21 lines
569 B
JSON
21 lines
569 B
JSON
{
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
{ "language": "typescript", "autoFix": true },
|
|
{ "language": "typescriptreact", "autoFix": true }
|
|
],
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"editor.tabCompletion": "on",
|
|
"editor.snippetSuggestions": "top",
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
}
|
|
}
|