2024-12-16 22:37:21 -07:00
|
|
|
// Place your settings in this file to overwrite default and user settings.
|
|
|
|
|
{
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
|
"source.organizeImports.biome": "always"
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
|
|
|
|
|
"typescript.tsc.autoDetect": "off",
|
|
|
|
|
|
|
|
|
|
"[css]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[scss]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[javascript]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[javascriptreact]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[typescript]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[typescriptreact]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[json]": {
|
2025-03-02 22:55:54 -07:00
|
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
|
|
|
"editor.formatOnSave": false
|
2024-12-16 22:37:21 -07:00
|
|
|
},
|
|
|
|
|
"[jsonc]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
},
|
|
|
|
|
"[yaml]": {
|
|
|
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
|
|
|
}
|
|
|
|
|
}
|