|
1 | 1 | { |
2 | | - "[python]": { |
3 | | - "editor.codeActionsOnSave": { |
4 | | - "source.fixAll": "explicit", |
5 | | - "source.organizeImports": "explicit" |
6 | | - }, |
7 | | - "editor.defaultFormatter": "charliermarsh.ruff", |
8 | | - }, |
9 | | - "python.analysis.typeCheckingMode": "strict", |
10 | | - "python.analysis.ignore": [ |
11 | | - "**/*_pb2.py", |
12 | | - "**/*_pb2.pyi", |
13 | | - "**/*_pb2_grpc.py", |
14 | | - "*.proto" |
15 | | - ], |
16 | | - "ruff.lint.args": [ |
17 | | - "--extend-ignore=E501", |
18 | | - "--extend-exclude=/**/3rdparty_repositories/**/*.py", |
19 | | - "--extend-exclude=/**/site-packages/**/*.py", |
20 | | - ], |
21 | | - "python.testing.unittestEnabled": false, |
22 | | - "python.testing.pytestEnabled": true, |
23 | | - "python.testing.pytestArgs": [ |
24 | | - "-vv", |
25 | | - ], |
26 | | - "python.languageServer": "Pylance", |
27 | | - "python.analysis.autoImportCompletions": true, |
28 | | - "editor.suggestSelection": "first", |
29 | | - "editor.quickSuggestions": { |
30 | | - "other": true, |
31 | | - "comments": false, |
32 | | - "strings": false |
33 | | - }, |
34 | | - "editor.acceptSuggestionOnEnter": "on", |
35 | | - "editor.tabCompletion": "on", |
36 | | - "python.analysis.completeFunctionParens": true, |
37 | | - "files.exclude": { |
38 | | - "**/.git": true, |
39 | | - "**/.svn": true, |
40 | | - "**/.hg": true, |
41 | | - "**/CVS": true, |
42 | | - "**/.DS_Store": true, |
43 | | - "**/Thumbs.db": true, |
44 | | - "ai_model_cache": true, |
45 | | - ".mypy_cache": true, |
46 | | - ".venv": true, |
47 | | - ".ruff_cache": true, |
| 2 | + "[python]": { |
| 3 | + "editor.codeActionsOnSave": { |
| 4 | + "source.fixAll": "explicit", |
| 5 | + "source.organizeImports": "explicit" |
48 | 6 | }, |
| 7 | + "editor.defaultFormatter": "charliermarsh.ruff" |
| 8 | + }, |
| 9 | + "python.analysis.typeCheckingMode": "strict", |
| 10 | + "python.analysis.ignore": [ |
| 11 | + "**/*_pb2.py", |
| 12 | + "**/*_pb2.pyi", |
| 13 | + "**/*_pb2_grpc.py", |
| 14 | + "*.proto" |
| 15 | + ], |
| 16 | + |
| 17 | + "python.testing.unittestEnabled": false, |
| 18 | + "python.testing.pytestEnabled": true, |
| 19 | + "python.testing.pytestArgs": ["-vv"], |
| 20 | + "python.languageServer": "Pylance", |
| 21 | + "python.analysis.autoImportCompletions": true, |
| 22 | + "editor.suggestSelection": "first", |
| 23 | + "editor.quickSuggestions": { |
| 24 | + "other": true, |
| 25 | + "comments": false, |
| 26 | + "strings": false |
| 27 | + }, |
| 28 | + "editor.acceptSuggestionOnEnter": "on", |
| 29 | + "editor.tabCompletion": "on", |
| 30 | + "python.analysis.completeFunctionParens": true, |
| 31 | + "files.exclude": { |
| 32 | + "**/.git": true, |
| 33 | + "**/.svn": true, |
| 34 | + "**/.hg": true, |
| 35 | + "**/CVS": true, |
| 36 | + "**/.DS_Store": true, |
| 37 | + "**/Thumbs.db": true, |
| 38 | + "ai_model_cache": true, |
| 39 | + ".mypy_cache": true, |
| 40 | + ".venv": true, |
| 41 | + ".ruff_cache": true |
| 42 | + } |
49 | 43 | } |
0 commit comments