|
30 | 30 | "esbenp.prettier-vscode",
|
31 | 31 | "dbaeumer.vscode-eslint",
|
32 | 32 | "tamasfe.even-better-toml"
|
33 |
| - ] |
| 33 | + ], |
| 34 | + "settings": { |
| 35 | + "python.testing.pytestArgs": ["tests"], |
| 36 | + "python.testing.unittestEnabled": false, |
| 37 | + "python.testing.pytestEnabled": true, |
| 38 | + "files.exclude": { |
| 39 | + "**/__pycache__": true, |
| 40 | + "**/.idea": true, |
| 41 | + "**/.mypy_cache": true, |
| 42 | + "**/.pytest_cache": true, |
| 43 | + "**/.hatch": true, |
| 44 | + "**/.ruff_cache": true |
| 45 | + }, |
| 46 | + "files.watcherExclude": { |
| 47 | + "**/__pycache__": true, |
| 48 | + "**/.idea": true, |
| 49 | + "**/.mypy_cache": true, |
| 50 | + "**/.pytest_cache": true, |
| 51 | + "**/.hatch": true, |
| 52 | + "**/.ruff_cache": true |
| 53 | + }, |
| 54 | + "python.linting.flake8Enabled": false, |
| 55 | + "python.linting.mypyEnabled": true, |
| 56 | + "python.terminal.activateEnvInCurrentTerminal": true, |
| 57 | + "python.formatting.provider": "black", |
| 58 | + "python.analysis.completeFunctionParens": true, |
| 59 | + "python.linting.mypyArgs": ["--show-column-numbers"], |
| 60 | + "prettier.printWidth": 120, |
| 61 | + "prettier.tabWidth": 4, |
| 62 | + "eslint.alwaysShowStatus": true, |
| 63 | + "eslint.format.enable": true, |
| 64 | + "eslint.lintTask.enable": true, |
| 65 | + "git.followTagsWhenSync": true, |
| 66 | + "git.enableSmartCommit": true, |
| 67 | + "python.analysis.diagnosticMode": "workspace", |
| 68 | + "ruff.importStrategy": "fromEnvironment", |
| 69 | + "python.linting.enabled": true |
| 70 | + } |
34 | 71 | }
|
35 | 72 | }
|
36 | 73 | }
|
0 commit comments