Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit c7b3224

Browse files
committed
Improve readability of settings.json
1 parent 2780570 commit c7b3224

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.vscode/settings.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
{
2-
"python.envFile": "${workspaceFolder}/.env",
3-
"python.formatting.yapfPath": "${workspaceFolder}/.venv/bin/yapf",
4-
"python.languageServer": "Pylance",
5-
"python.formatting.provider": "yapf",
62
"[python]": {
73
"editor.insertSpaces": true,
84
"editor.tabSize": 4,
@@ -13,10 +9,14 @@
139
"source.organizeImports": true
1410
}
1511
},
16-
"isort.path": [
17-
"${workspaceFolder}/.venv/bin/isort"
18-
],
12+
"python.envFile": "${workspaceFolder}/.env",
13+
"python.languageServer": "Pylance",
14+
"python.formatting.provider": "yapf",
15+
"python.formatting.yapfPath": "${workspaceFolder}/.venv/bin/yapf",
16+
"python.linting.enabled": true,
17+
"python.linting.pylintEnabled": true,
1918
"python.linting.pylintPath": "${workspaceFolder}/.venv/bin/pylint",
19+
"python.linting.mypyEnabled": true,
2020
"python.linting.mypyArgs": [
2121
"--strict",
2222
"--follow-imports=silent",
@@ -26,10 +26,13 @@
2626
"--namespace-packages",
2727
"--no-implicit-reexport"
2828
],
29+
"isort.path": [
30+
"${workspaceFolder}/.venv/bin/isort"
31+
],
32+
"python.testing.pytestEnabled": true,
2933
"python.testing.pytestArgs": [
3034
"."
3135
],
32-
"python.testing.pytestEnabled": true,
3336
"emeraldwalk.runonsave": {
3437
"commands": [
3538
{
@@ -38,9 +41,6 @@
3841
}
3942
]
4043
},
41-
"python.linting.enabled": true,
42-
"python.linting.pylintEnabled": true,
43-
"python.linting.mypyEnabled": true,
4444
"[toml]": {
4545
"editor.defaultFormatter": "tamasfe.even-better-toml"
4646
}

0 commit comments

Comments
 (0)