39 lines
866 B
JSON
39 lines
866 B
JSON
{
|
|
// "editor.formatOnSave": true,
|
|
// "editor.defaultFormatter": "biomejs.biome",
|
|
// "editor.codeActionsOnSave": {
|
|
// "source.fixAll.biome": "always"
|
|
// },
|
|
// "[typescript]": {
|
|
// "editor.defaultFormatter": "biomejs.biome"
|
|
// },
|
|
// "[svelte]": {
|
|
// "editor.defaultFormatter": "biomejs.biome"
|
|
// },
|
|
"eslint.useFlatConfig": true,
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"pattern": "apps/*"
|
|
},
|
|
{
|
|
"pattern": "packages/*"
|
|
}
|
|
],
|
|
"eslint.validate": ["javascript", "typescript", "svelte"],
|
|
"eslint.options": {
|
|
"cache": true,
|
|
"cacheLocation": ".eslintcache"
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "vscode.json-language-features"
|
|
},
|
|
"[svelte]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"editor.tabSize": 2
|
|
}
|