You've already forked objdiff-web
mirror of
https://github.com/encounter/objdiff-web.git
synced 2026-07-10 12:18:37 -07:00
39 lines
947 B
JSON
39 lines
947 B
JSON
|
|
// 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]": {
|
||
|
|
"editor.defaultFormatter": "biomejs.biome"
|
||
|
|
},
|
||
|
|
"[jsonc]": {
|
||
|
|
"editor.defaultFormatter": "biomejs.biome"
|
||
|
|
},
|
||
|
|
"[yaml]": {
|
||
|
|
"editor.defaultFormatter": "biomejs.biome"
|
||
|
|
}
|
||
|
|
}
|