Uecko_ERP/.vscode/settings.json

64 lines
1.7 KiB
JSON
Raw Normal View History

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.autoImports": true,
"typescript.suggest.completeFunctionCalls": true,
"typescript.suggest.includeAutomaticOptionalChainCompletions": true,
"typescript.suggestionActions.enabled": true,
"typescript.preferences.importModuleSpecifier": "shortest",
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.organizeImports": "always",
"quickfix.biome": "always",
"source.fixAll": "always",
"source.fixAll.biome": "always",
"source.organizeImports.biome": "always",
"source.removeUnusedImports": "always",
"source.removeUnused.biome": "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
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]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[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"
} // <- your root font size here
}