mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
ef4a492cb1
move services
34 lines
953 B
JSON
34 lines
953 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"[javascript][typescript][css]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.tabSize": 2,
|
|
"editor.formatOnSave": true
|
|
},
|
|
"[svelte]": {
|
|
"editor.defaultFormatter": "svelte.svelte-vscode",
|
|
"editor.tabSize": 2
|
|
},
|
|
"svelte.enable-ts-plugin": true,
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"svelte"
|
|
],
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"[dart]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.selectionHighlight": false,
|
|
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
|
"editor.suggestSelection": "first",
|
|
"editor.tabCompletion": "onlySnippets",
|
|
"editor.wordBasedSuggestions": "off",
|
|
"editor.defaultFormatter": "Dart-Code.dart-code"
|
|
},
|
|
"cSpell.words": [
|
|
"immich"
|
|
],
|
|
"explorer.fileNesting.enabled": true,
|
|
"explorer.fileNesting.patterns": {
|
|
"*.ts": "${capture}.spec.ts,${capture}.mock.ts"
|
|
}
|
|
} |