mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-04 09:50:07 +00:00
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.codeActionsOnSave": ["source.organizeImports", "source.fixAll.eslint"],
|
|
"eslint.validate": ["typescript", "javascript"],
|
|
"files.associations": {
|
|
"*.ts": "typescript",
|
|
"*.js": "javascript"
|
|
},
|
|
"typescript.tsdk": "node_modules\\typescript\\lib",
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace"
|
|
},
|
|
"[yaml]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2,
|
|
"editor.autoIndent": "advanced",
|
|
"diffEditor.ignoreTrimWhitespace": false
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
|
|
}
|
|
}
|