mirror of
https://github.com/immich-app/immich.git
synced 2026-03-10 11:53:43 -04:00
87 lines
2.7 KiB
JSON
87 lines
2.7 KiB
JSON
{
|
|
"[css]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[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"
|
|
},
|
|
"[javascript]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.removeUnusedImports": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[svelte]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.removeUnusedImports": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "svelte.svelte-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[typescript]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.removeUnusedImports": "explicit"
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true
|
|
},
|
|
"cSpell.words": ["immich"],
|
|
"css.lint.unknownAtRules": "ignore",
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.formatOnSave": true,
|
|
"eslint.useFlatConfig": true,
|
|
"eslint.validate": ["javascript", "typescript", "svelte"],
|
|
"eslint.workingDirectories": [
|
|
{ "directory": "cli", "changeProcessCWD": true },
|
|
{ "directory": "e2e", "changeProcessCWD": true },
|
|
{ "directory": "server", "changeProcessCWD": true },
|
|
{ "directory": "web", "changeProcessCWD": true }
|
|
],
|
|
"files.watcherExclude": {
|
|
"**/.jj/**": true,
|
|
"**/.git/**": true,
|
|
"**/node_modules/**": true,
|
|
"**/build/**": true,
|
|
"**/dist/**": true,
|
|
"**/.svelte-kit/**": true
|
|
},
|
|
"explorer.fileNesting.enabled": true,
|
|
"explorer.fileNesting.patterns": {
|
|
"*.dart": "${capture}.g.dart,${capture}.gr.dart,${capture}.drift.dart",
|
|
"*.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"
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/build": true,
|
|
"**/dist": true,
|
|
"**/.svelte-kit": true,
|
|
"**/open-api/typescript-sdk/src": true
|
|
},
|
|
"svelte.enable-ts-plugin": true,
|
|
"tailwindCSS.experimental.configFile": {
|
|
"web/src/app.css": "web/src/**"
|
|
},
|
|
"js/ts.preferences.importModuleSpecifier": "non-relative",
|
|
"vitest.maximumConfigs": 10
|
|
}
|