mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
24 lines
626 B
JSON
24 lines
626 B
JSON
{
|
|
// We use Biome for linting and formatting.
|
|
"eslint.enable": false,
|
|
"prettier.enable": false,
|
|
"editor.formatOnSave": true,
|
|
|
|
// Auto fix
|
|
"editor.codeActionsOnSave": {
|
|
// Auto fix all Biome issues on save.
|
|
"source.fixAll.biome": "always",
|
|
"source.organizeImports.biome": "always",
|
|
// Disable built-in organize imports to avoid conflicts with Biome.
|
|
"source.organizeImports": "never"
|
|
},
|
|
|
|
"biome.requireConfiguration": true,
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
|
|
"[astro]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
}
|
|
}
|