|
1 | 1 | {
|
2 |
| - "python.envFile": "${workspaceFolder}/.env", |
3 |
| - "python.formatting.yapfPath": "${workspaceFolder}/.venv/bin/yapf", |
4 |
| - "python.languageServer": "Pylance", |
5 |
| - "python.formatting.provider": "yapf", |
6 | 2 | "[python]": {
|
7 | 3 | "editor.insertSpaces": true,
|
8 | 4 | "editor.tabSize": 4,
|
|
13 | 9 | "source.organizeImports": true
|
14 | 10 | }
|
15 | 11 | },
|
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, |
19 | 18 | "python.linting.pylintPath": "${workspaceFolder}/.venv/bin/pylint",
|
| 19 | + "python.linting.mypyEnabled": true, |
20 | 20 | "python.linting.mypyArgs": [
|
21 | 21 | "--strict",
|
22 | 22 | "--follow-imports=silent",
|
|
26 | 26 | "--namespace-packages",
|
27 | 27 | "--no-implicit-reexport"
|
28 | 28 | ],
|
| 29 | + "isort.path": [ |
| 30 | + "${workspaceFolder}/.venv/bin/isort" |
| 31 | + ], |
| 32 | + "python.testing.pytestEnabled": true, |
29 | 33 | "python.testing.pytestArgs": [
|
30 | 34 | "."
|
31 | 35 | ],
|
32 |
| - "python.testing.pytestEnabled": true, |
33 | 36 | "emeraldwalk.runonsave": {
|
34 | 37 | "commands": [
|
35 | 38 | {
|
|
38 | 41 | }
|
39 | 42 | ]
|
40 | 43 | },
|
41 |
| - "python.linting.enabled": true, |
42 |
| - "python.linting.pylintEnabled": true, |
43 |
| - "python.linting.mypyEnabled": true, |
44 | 44 | "[toml]": {
|
45 | 45 | "editor.defaultFormatter": "tamasfe.even-better-toml"
|
46 | 46 | }
|
|
0 commit comments