2025-01-29 19:02:59 +00:00
|
|
|
{
|
2025-05-02 21:43:51 +00:00
|
|
|
"files.associations": {
|
|
|
|
|
"tsconfig.json": "jsonc",
|
2025-05-19 16:15:01 +00:00
|
|
|
"typescript-config/*.json": "jsonc",
|
|
|
|
|
"*.css": "tailwindcss"
|
2025-05-02 21:43:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Javascript and TypeScript settings
|
|
|
|
|
"javascript.suggest.enabled": true,
|
|
|
|
|
"javascript.suggest.autoImports": true,
|
|
|
|
|
"javascript.preferences.importModuleSpecifier": "shortest",
|
|
|
|
|
|
|
|
|
|
"typescript.suggest.enabled": true,
|
|
|
|
|
"typescript.suggest.completeFunctionCalls": true,
|
|
|
|
|
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
|
|
|
|
|
"typescript.suggestionActions.enabled": true,
|
2025-06-24 18:38:57 +00:00
|
|
|
"typescript.autoClosingTags": true,
|
2025-05-02 21:43:51 +00:00
|
|
|
|
2025-05-19 16:15:01 +00:00
|
|
|
"editor.quickSuggestions": {
|
|
|
|
|
"strings": "on"
|
|
|
|
|
},
|
|
|
|
|
|
2025-02-03 13:12:36 +00:00
|
|
|
"editor.codeActionsOnSave": {
|
2025-05-17 19:12:01 +00:00
|
|
|
"source.fixAll": "always",
|
|
|
|
|
"source.fixAll.biome": "always",
|
2025-11-04 15:55:36 +00:00
|
|
|
"source.removeUnusedImports": "always"
|
2025-02-03 13:12:36 +00:00
|
|
|
},
|
2025-05-04 20:06:57 +00:00
|
|
|
"editor.defaultFormatter": "biomejs.biome",
|
2025-02-03 13:12:36 +00:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.formatOnPaste": false,
|
2025-05-04 20:06:57 +00:00
|
|
|
|
2025-05-17 19:12:01 +00:00
|
|
|
"[typescript]": {
|
2025-05-04 20:06:57 +00:00
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
2025-05-17 19:12:01 +00:00
|
|
|
"[typescriptreact]": {
|
2025-11-04 15:55:36 +00:00
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
2025-05-17 19:12:01 +00:00
|
|
|
},
|
|
|
|
|
"[javascript]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[javascriptreact]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[json]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[jsonc]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"prettier.enable": false,
|
|
|
|
|
"eslint.enable": false,
|
2025-02-03 13:12:36 +00:00
|
|
|
|
|
|
|
|
// other vscode settings
|
|
|
|
|
"[handlebars]": {
|
|
|
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
2025-09-09 15:48:12 +00:00
|
|
|
},
|
|
|
|
|
"[sql]": {
|
|
|
|
|
"editor.defaultFormatter": "cweijan.vscode-mysql-client2"
|
2025-02-03 13:12:36 +00:00
|
|
|
} // <- your root font size here
|
|
|
|
|
}
|