2024-03-20 19:32:04 +01:00
|
|
|
{
|
2025-04-28 10:11:19 -04:00
|
|
|
"[css]": {
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.tabSize": 2
|
|
|
|
|
},
|
|
|
|
|
"[dart]": {
|
|
|
|
|
"editor.defaultFormatter": "Dart-Code.dart-code",
|
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.selectionHighlight": false,
|
|
|
|
|
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
|
|
|
|
"editor.suggestSelection": "first",
|
|
|
|
|
"editor.tabCompletion": "onlySnippets",
|
|
|
|
|
"editor.wordBasedSuggestions": "off"
|
|
|
|
|
},
|
2024-05-18 14:50:53 -04:00
|
|
|
"[javascript]": {
|
2025-04-28 10:11:19 -04:00
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
|
"source.organizeImports": "explicit",
|
|
|
|
|
"source.removeUnusedImports": "explicit"
|
|
|
|
|
},
|
2024-05-18 14:50:53 -04:00
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
2025-04-28 10:11:19 -04:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.tabSize": 2
|
2024-05-18 14:50:53 -04:00
|
|
|
},
|
2025-04-28 10:11:19 -04:00
|
|
|
"[json]": {
|
2024-05-18 14:50:53 -04:00
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
2025-04-28 10:11:19 -04:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.tabSize": 2
|
2024-05-18 14:50:53 -04:00
|
|
|
},
|
2025-04-28 10:11:19 -04:00
|
|
|
"[jsonc]": {
|
2024-03-20 19:32:04 +01:00
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
2025-04-28 10:11:19 -04:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
|
"editor.tabSize": 2
|
2024-03-20 19:32:04 +01:00
|
|
|
},
|
|
|
|
|
"[svelte]": {
|
2025-04-28 10:11:19 -04:00
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
|
"source.organizeImports": "explicit",
|
|
|
|
|
"source.removeUnusedImports": "explicit"
|
|
|
|
|
},
|
2024-03-20 19:32:04 +01:00
|
|
|
"editor.defaultFormatter": "svelte.svelte-vscode",
|
2025-04-28 10:11:19 -04:00
|
|
|
"editor.formatOnSave": true,
|
2024-03-20 19:32:04 +01:00
|
|
|
"editor.tabSize": 2
|
|
|
|
|
},
|
2025-04-28 10:11:19 -04:00
|
|
|
"[typescript]": {
|
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
|
"source.organizeImports": "explicit",
|
|
|
|
|
"source.removeUnusedImports": "explicit"
|
|
|
|
|
},
|
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
2024-03-20 19:32:04 +01:00
|
|
|
"editor.formatOnSave": true,
|
2025-04-28 10:11:19 -04:00
|
|
|
"editor.tabSize": 2
|
2024-03-20 19:32:04 +01:00
|
|
|
},
|
2025-04-28 10:11:19 -04:00
|
|
|
"cSpell.words": ["immich"],
|
|
|
|
|
"editor.formatOnSave": true,
|
2025-11-27 21:31:16 +00:00
|
|
|
"eslint.validate": ["javascript", "typescript", "svelte"],
|
2024-03-21 00:07:30 +01:00
|
|
|
"explorer.fileNesting.enabled": true,
|
|
|
|
|
"explorer.fileNesting.patterns": {
|
2025-04-28 10:11:19 -04:00
|
|
|
"*.dart": "${capture}.g.dart,${capture}.gr.dart,${capture}.drift.dart",
|
2025-08-19 05:55:24 -07:00
|
|
|
"*.ts": "${capture}.spec.ts,${capture}.mock.ts",
|
|
|
|
|
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, bun.lockb, bun.lock, pnpm-workspace.yaml, .pnpmfile.cjs"
|
2025-04-28 10:11:19 -04:00
|
|
|
},
|
|
|
|
|
"svelte.enable-ts-plugin": true,
|
|
|
|
|
"typescript.preferences.importModuleSpecifier": "non-relative"
|
|
|
|
|
}
|