|
1 | 1 | {
|
2 |
| - "editor.detectIndentation": false, |
3 |
| - "editor.formatOnSave": true, |
4 |
| - "python.linting.enabled": true, |
5 |
| - "python.analysis.typeCheckingMode": "off", |
6 |
| - "python.languageServer": "Pylance", |
7 |
| - "python.formatting.provider": "black", |
8 |
| - "git.autofetch": "all", |
9 |
| - "prettier.tabWidth": 4, |
10 |
| - "prettier.endOfLine": "auto", |
11 |
| - "prettier.proseWrap": "never", |
12 |
| - "files.associations": { |
13 |
| - "**/templates/**.html": "jinja", |
14 |
| - "**/template/**.html": "jinja", |
15 |
| - }, |
16 |
| - "[json]": { |
17 |
| - "editor.defaultFormatter": "vscode.json-language-features" |
| 2 | + "[css]": { |
| 3 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
18 | 4 | },
|
19 | 5 | "[javascript]": {
|
20 | 6 | "editor.defaultFormatter": "esbenp.prettier-vscode"
|
21 | 7 | },
|
22 |
| - "[css]": { |
23 |
| - "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 8 | + "[json]": { |
| 9 | + "editor.defaultFormatter": "vscode.json-language-features" |
24 | 10 | },
|
25 | 11 | "[python]": {
|
26 | 12 | "editor.codeActionsOnSave": {
|
27 | 13 | "source.organizeImports": true
|
28 | 14 | }
|
29 | 15 | },
|
30 |
| - "files.insertFinalNewline": true |
| 16 | + "editor.detectIndentation": false, |
| 17 | + "editor.formatOnSave": true, |
| 18 | + "files.associations": { |
| 19 | + "**/template/**.html": "jinja", |
| 20 | + "**/templates/**.html": "jinja" |
| 21 | + }, |
| 22 | + "files.insertFinalNewline": true, |
| 23 | + "git.autofetch": "all", |
| 24 | + "prettier.endOfLine": "auto", |
| 25 | + "prettier.proseWrap": "never", |
| 26 | + "prettier.tabWidth": 4, |
| 27 | + "python.analysis.typeCheckingMode": "off", |
| 28 | + "python.formatting.provider": "black", |
| 29 | + "python.languageServer": "Pylance", |
| 30 | + "python.linting.enabled": true |
31 | 31 | }
|
0 commit comments