2025-01-29 19:02:59 +00:00
|
|
|
{
|
2025-05-02 21:43:51 +00:00
|
|
|
"files.associations": {
|
|
|
|
|
"tsconfig.json": "jsonc",
|
|
|
|
|
"typescript-config/*.json": "jsonc"
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Javascript and TypeScript settings
|
|
|
|
|
"javascript.suggest.enabled": true,
|
|
|
|
|
"javascript.suggest.autoImports": true,
|
|
|
|
|
"javascript.preferences.importModuleSpecifier": "shortest",
|
|
|
|
|
|
|
|
|
|
"typescript.suggest.enabled": true,
|
|
|
|
|
"typescript.suggest.autoImports": true,
|
|
|
|
|
"typescript.suggest.completeFunctionCalls": true,
|
|
|
|
|
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
|
|
|
|
|
"typescript.suggestionActions.enabled": true,
|
|
|
|
|
"typescript.preferences.importModuleSpecifier": "shortest",
|
|
|
|
|
|
2025-02-03 13:12:36 +00:00
|
|
|
"editor.codeActionsOnSave": {
|
2025-05-04 20:06:57 +00:00
|
|
|
"source.fixAll": "explicit",
|
|
|
|
|
"source.fixAll.biome": "explicit",
|
|
|
|
|
"source.organizeImports.biome": "explicit",
|
|
|
|
|
"source.removeUnusedImports": "explicit"
|
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
|
|
|
|
|
|
|
|
"[javascript][typescript][json][jsonc]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
2025-02-03 13:12:36 +00:00
|
|
|
|
|
|
|
|
// other vscode settings
|
|
|
|
|
"[handlebars]": {
|
|
|
|
|
"editor.defaultFormatter": "vscode.html-language-features"
|
|
|
|
|
} // <- your root font size here
|
|
|
|
|
}
|