|
@@ -17,18 +17,22 @@
|
|
|
"files.trimFinalNewlines": true,
|
|
|
"files.insertFinalNewline": true,
|
|
|
|
|
|
- "editor.codeActionsOnSave": {
|
|
|
- "source.fixAll.eslint": "explicit"
|
|
|
- },
|
|
|
-
|
|
|
"[javascript]": {
|
|
|
"editor.formatOnSave": true,
|
|
|
- "editor.tabSize": 2
|
|
|
+ "editor.tabSize": 2,
|
|
|
+ "editor.defaultFormatter": "biomejs.biome",
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "quickfix.biome": true
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
"[typescript]": {
|
|
|
"editor.formatOnSave": true,
|
|
|
- "editor.tabSize": 2
|
|
|
+ "editor.tabSize": 2,
|
|
|
+ "editor.defaultFormatter": "biomejs.biome",
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "quickfix.biome": true
|
|
|
+ }
|
|
|
},
|
|
|
// Exclude Specific Files from Auto-Imports
|
|
|
"typescript.preferences.autoImportFileExcludePatterns": [
|
|
@@ -41,23 +45,33 @@
|
|
|
|
|
|
"[typescriptreact]": {
|
|
|
"editor.formatOnSave": true,
|
|
|
- "editor.tabSize": 2
|
|
|
+ "editor.tabSize": 2,
|
|
|
+ "editor.defaultFormatter": "biomejs.biome",
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "quickfix.biome": true
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
"[javascriptreact]": {
|
|
|
"editor.formatOnSave": true,
|
|
|
- "editor.tabSize": 2
|
|
|
+ "editor.tabSize": 2,
|
|
|
+ "editor.defaultFormatter": "biomejs.biome",
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "quickfix.biome": true
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
"[less]": {
|
|
|
- "editor.formatOnSave": true
|
|
|
+ "editor.formatOnSave": true,
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "source.fixAll.eslint": "explicit"
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
"[python]": {
|
|
|
"editor.formatOnSave": true,
|
|
|
"editor.codeActionsOnSave": {
|
|
|
- "source.organizeImports": "explicit",
|
|
|
- "source.fixAll.eslint": "never"
|
|
|
+ "source.organizeImports": "explicit"
|
|
|
},
|
|
|
"editor.defaultFormatter": "ms-python.black-formatter"
|
|
|
},
|
|
@@ -66,6 +80,19 @@
|
|
|
"editor.formatOnSave": false
|
|
|
},
|
|
|
|
|
|
+ "[json]": {
|
|
|
+ "editor.defaultFormatter": "biomejs.biome",
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "quickfix.biome": true
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ "[markdown]": {
|
|
|
+ "editor.codeActionsOnSave": {
|
|
|
+ "source.fixAll.eslint": "explicit"
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
"editor.tabSize": 4,
|
|
|
"python.testing.pytestEnabled": true,
|
|
|
"python.testing.unittestEnabled": false,
|