mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-11 16:27:18 +10:00
63 lines
1.6 KiB
Diff
63 lines
1.6 KiB
Diff
diff --git a/.vscode/settings.json b/.vscode/settings.json
|
|
index f394c8a..c615121 100644
|
|
--- a/.vscode/settings.json
|
|
+++ b/.vscode/settings.json
|
|
@@ -23,22 +23,22 @@
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
|
- "editor.formatOnSave": true
|
|
+ // "editor.formatOnSave": true
|
|
},
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "vscode.typescript-language-features",
|
|
- "editor.formatOnSave": true
|
|
+ // "editor.formatOnSave": true
|
|
},
|
|
"[rust]": {
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer",
|
|
- "editor.formatOnSave": true,
|
|
+ // "editor.formatOnSave": true,
|
|
},
|
|
"[github-issues]": {
|
|
"editor.wordWrap": "on"
|
|
},
|
|
// --- Files ---
|
|
- "files.trimTrailingWhitespace": true,
|
|
- "files.insertFinalNewline": true,
|
|
+ // "files.trimTrailingWhitespace": true,
|
|
+ // "files.insertFinalNewline": true,
|
|
"files.exclude": {
|
|
".git": true,
|
|
".build": true,
|
|
@@ -47,9 +47,9 @@
|
|
".vscode-test": true,
|
|
"cli/target": true,
|
|
"build/**/*.js.map": true,
|
|
- "build/**/*.js": {
|
|
- "when": "$(basename).ts"
|
|
- }
|
|
+ // "build/**/*.js": {
|
|
+ // "when": "$(basename).ts"
|
|
+ // }
|
|
},
|
|
"files.associations": {
|
|
"cglicenses.json": "jsonc",
|
|
@@ -60,7 +60,7 @@
|
|
"**/yarn.lock": true,
|
|
"**/package-lock.json": true,
|
|
"**/Cargo.lock": true,
|
|
- "build/**/*.js": true,
|
|
+ // "build/**/*.js": true,
|
|
"out/**": true,
|
|
"out-build/**": true,
|
|
"out-vscode/**": true,
|
|
@@ -76,6 +76,7 @@
|
|
"build/builtin/*.js": true,
|
|
"build/monaco/*.js": true,
|
|
"build/npm/*.js": true,
|
|
+ "build/**/*.js": true,
|
|
"build/*.js": true
|
|
},
|
|
// --- Search ---
|