mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
- .devcontainer: we don't update it, we could keep it if we wanted - .gitpod.yml: we don't need the .gitpod file, if someone uses gitpod they can install deps themself - .helix: the config is out of date as it still uses prettier - scripts/checkCpuModel.js: this script was used for benchmarks but we removed those - scripts/generateMessage.js: this script was used for benchmarks but we removed those - scripts/openApiSchema.js: this is a WIP script that was never finished and the discord open-api spec is preview - .vscode/settings.json: the old tsdk config is deprecated, we now use the new js/ts.tsdk.path config instead
38 lines
958 B
JSON
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"
|
|
},
|
|
"js/ts.tsdk.path": "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"
|
|
}
|
|
}
|