Files
discordeno/.vscode/settings.json
Fleny 83c2fef9c5 chore(.vscode): use unix path for typescript tsdk (#4684)
While windows accepts both (or gets normalized, i don't actually know), Linux does not
2026-01-20 11:52:11 +05:30

38 lines
958 B
JSON

{
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.codeActionsOnSave": ["source.organizeImports.biome", "source.fixAll.biome"],
"files.associations": {
"*.ts": "typescript",
"*.js": "javascript"
},
"typescript.tsdk": "node_modules/typescript/lib",
"[json]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"[jsonc]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace"
},
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced",
"diffEditor.ignoreTrimWhitespace": false
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
}
}