Skip to content

Commit 2deb904

Browse files
committed
fix: disable biome format and lint, go back to prettier
Signed-off-by: jmeridth <[email protected]>
1 parent 1db96d4 commit 2deb904

File tree

4 files changed

+42
-40
lines changed

4 files changed

+42
-40
lines changed

.devcontainer/devcontainer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "Existing Dockerfile",
3-
"build": {
4-
"context": "..",
5-
"dockerfile": "../Dockerfile"
6-
},
2+
"name": "Existing Dockerfile",
3+
"build": {
4+
"context": "..",
5+
"dockerfile": "../Dockerfile"
6+
},
77

8-
"features": {
9-
"ghcr.io/devcontainers/features/common-utils:2": {}
10-
},
8+
"features": {
9+
"ghcr.io/devcontainers/features/common-utils:2": {}
10+
},
1111

12-
"remoteUser": "devcontainer"
12+
"remoteUser": "devcontainer"
1313
}

.github/linters/.jscpd.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
{
2-
"exitCode": 0,
3-
"ignore": [
4-
"**/.venv/**",
5-
"**/.coverage*",
6-
"**/.devcontainer/**",
7-
"**/.git/**",
8-
"**/.gitignore",
9-
"**/.github/**",
10-
"**/.mypy_cache/**",
11-
"**/.pytest_cache/**",
12-
"**/__pycache__/**",
13-
"**/build/**",
14-
"**/dist/**",
15-
"**/docs/**",
16-
"**/migrations/**",
17-
"**/node_modules/**",
18-
"**/report/**",
19-
"**/test_*.py",
20-
"**/venv/**",
21-
"**/*.md",
22-
"**/Dockerfile",
23-
"**/LICENSE",
24-
"**/Makefile"
25-
]
2+
"exitCode": 0,
3+
"ignore": [
4+
"**/.venv/**",
5+
"**/.coverage*",
6+
"**/.devcontainer/**",
7+
"**/.git/**",
8+
"**/.gitignore",
9+
"**/.github/**",
10+
"**/.mypy_cache/**",
11+
"**/.pytest_cache/**",
12+
"**/__pycache__/**",
13+
"**/build/**",
14+
"**/dist/**",
15+
"**/docs/**",
16+
"**/migrations/**",
17+
"**/node_modules/**",
18+
"**/report/**",
19+
"**/test_*.py",
20+
"**/venv/**",
21+
"**/*.md",
22+
"**/Dockerfile",
23+
"**/LICENSE",
24+
"**/Makefile"
25+
]
2626
}

.github/workflows/linter.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ jobs:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
GITHUB_ACTIONS_COMMAND_ARGS: -shellcheck=
3939
VALIDATE_MARKDOWN_PRETTIER: false
40+
VALIDATE_BIOME_FORMAT: false
41+
VALIDATE_BIOME_LINT: false

.vscode/settings.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"python.testing.pytestArgs": ["."],
3-
"python.testing.unittestEnabled": false,
4-
"python.testing.pytestEnabled": true,
5-
"[python]": {
6-
"editor.defaultFormatter": "ms-python.black-formatter"
7-
},
8-
"python.formatting.provider": "none"
2+
"python.testing.pytestArgs": ["."],
3+
"python.testing.unittestEnabled": false,
4+
"python.testing.pytestEnabled": true,
5+
"[python]": {
6+
"editor.defaultFormatter": "ms-python.black-formatter"
7+
},
8+
"python.formatting.provider": "none"
99
}

0 commit comments

Comments
 (0)