58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
// Font Family
|
|
"editor.fontFamily": "'Fira Code', 'Cascadia Code', 'Consolas'",
|
|
|
|
// Enable Font Ligatures
|
|
"editor.fontLigatures": true,
|
|
|
|
// Javascript and TypeScript settings
|
|
"js/ts.suggest.enabled": true,
|
|
"js/ts.suggest.autoImports": true,
|
|
"js/ts.preferences.importModuleSpecifier": "shortest",
|
|
|
|
"js/ts.suggest.completeFunctionCalls": true,
|
|
"js/ts.suggest.includeAutomaticOptionalChainCompletions": true,
|
|
"js/ts.suggestionActions.enabled": true,
|
|
"js/ts.autoClosingTags.enabled": true,
|
|
|
|
"editor.quickSuggestions": {
|
|
"strings": "on"
|
|
},
|
|
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
|
|
// Biome
|
|
"biome.enabled": true,
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports.biome": "explicit",
|
|
"source.fixAll.biome": "explicit",
|
|
"source.removeUnusedImports": "always",
|
|
"source.fixAll.eslint": "explicit"
|
|
},
|
|
|
|
// other vscode settings
|
|
"[sql]": {
|
|
"editor.defaultFormatter": "cweijan.vscode-mysql-client2"
|
|
} // <- your root font size here
|
|
}
|