|
8 | 8 | },
|
9 | 9 | "[javascript]": {
|
10 | 10 | "editor.codeActionsOnSave": {
|
11 |
| - "source.fixAll.eslint": true |
| 11 | + "source.fixAll.eslint": "explicit" |
12 | 12 | },
|
13 | 13 | "editor.defaultFormatter": "esbenp.prettier-vscode",
|
14 | 14 | "editor.tabSize": 2
|
15 | 15 | },
|
16 | 16 | "[javascriptreact]": {
|
17 | 17 | "editor.codeActionsOnSave": {
|
18 |
| - "source.fixAll.eslint": true |
| 18 | + "source.fixAll.eslint": "explicit" |
19 | 19 | },
|
20 | 20 | "editor.defaultFormatter": "esbenp.prettier-vscode",
|
21 | 21 | "editor.tabSize": 2
|
|
48 | 48 | },
|
49 | 49 | "[typescript]": {
|
50 | 50 | "editor.codeActionsOnSave": {
|
51 |
| - "source.fixAll.eslint": true |
| 51 | + "source.fixAll.eslint": "explicit" |
52 | 52 | },
|
53 | 53 | "editor.defaultFormatter": "esbenp.prettier-vscode",
|
54 | 54 | "editor.tabSize": 2
|
55 | 55 | },
|
56 | 56 | "[typescriptreact]": {
|
57 | 57 | "editor.codeActionsOnSave": {
|
58 |
| - "source.fixAll.eslint": true |
| 58 | + "source.fixAll.eslint": "explicit" |
59 | 59 | },
|
60 | 60 | "editor.defaultFormatter": "esbenp.prettier-vscode",
|
61 | 61 | "editor.tabSize": 2
|
|
83 | 83 | "mdx"
|
84 | 84 | ],
|
85 | 85 | "black-formatter.args": ["--config", "pyproject.toml"],
|
| 86 | + "black-formatter.importStrategy": "fromEnvironment", |
| 87 | + "python.analysis.typeCheckingMode": "basic", |
| 88 | + "python.analysis.diagnosticSeverityOverrides": { |
| 89 | + "reportArgumentType": "warning", |
| 90 | + "reportOptionalMemberAccess": "warning", |
| 91 | + "reportAttributeAccessIssue": "warning", |
| 92 | + "reportReturnType": "warning" |
| 93 | + }, |
86 | 94 | "python.analysis.diagnosticMode": "workspace",
|
87 | 95 | "python.analysis.include": ["pyprojects/**", "examples/**"],
|
88 | 96 | "python.testing.pytestArgs": [
|
|
92 | 100 | "--cov-report=html"
|
93 | 101 | ],
|
94 | 102 | "python.testing.unittestEnabled": false,
|
95 |
| - "python.testing.pytestEnabled": true, |
96 |
| - "[javascript][javascriptreact][typescript][typescriptreact]": { |
97 |
| - "editor.codeActionsOnSave": { |
98 |
| - "source.fixAll.eslint": "explicit" |
99 |
| - } |
100 |
| - } |
| 103 | + "python.testing.pytestEnabled": true |
101 | 104 | }
|
0 commit comments