diff options
Diffstat (limited to 'viewer/visualstudio.code-workspace')
-rw-r--r-- | viewer/visualstudio.code-workspace | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/viewer/visualstudio.code-workspace b/viewer/visualstudio.code-workspace index 8315cbb..a9f7052 100644 --- a/viewer/visualstudio.code-workspace +++ b/viewer/visualstudio.code-workspace | |||
@@ -6,22 +6,36 @@ | |||
6 | ], | 6 | ], |
7 | "settings": { | 7 | "settings": { |
8 | "editor.tabSize": 2, | 8 | "editor.tabSize": 2, |
9 | "editor.formatOnSave": true, | ||
10 | "editor.wordBasedSuggestions": false, | 9 | "editor.wordBasedSuggestions": false, |
11 | "editor.detectIndentation": false, | 10 | "editor.detectIndentation": false, |
12 | "files.insertFinalNewline": true, | 11 | "files.insertFinalNewline": true, |
13 | "files.trimFinalNewlines": true, | 12 | "files.trimFinalNewlines": true, |
14 | "javascript.format.semicolons": "insert", | 13 | "javascript.format.semicolons": "insert", |
15 | "typescript.disableAutomaticTypeAcquisition": true, | 14 | "typescript.disableAutomaticTypeAcquisition": true, |
16 | "vue-i18n-ally.keystyle": "flat", | ||
17 | "vue-i18n-ally.localesPaths": "src/locales", | ||
18 | "i18n-ally.localesPaths": "src/locales", | 15 | "i18n-ally.localesPaths": "src/locales", |
16 | "i18n-ally.keystyle": "flat", | ||
17 | "i18n-ally.enabledFrameworks": ["vue"], | ||
18 | "i18n-ally.sortKeys": true, | ||
19 | // --- | ||
20 | // Autoformating is done with eslint-prettier | ||
21 | "eslint.enable": true, | ||
22 | "eslint.onIgnoredFiles": "warn", | ||
23 | "vetur.format.enable": false, | ||
24 | "javascript.format.enable": false, | ||
25 | "typescript.format.enable": false, | ||
26 | "html.format.enable": false, | ||
27 | "eslint.format.enable": false, | ||
28 | "editor.formatOnSave": false, | ||
29 | "editor.codeActionsOnSave": { | ||
30 | "source.fixAll.eslint": true, | ||
31 | }, | ||
32 | // --- | ||
19 | }, | 33 | }, |
20 | } | 34 | } |
21 | // Recommended Visual Studio Code extensions: | 35 | // Recommended Visual Studio Code extensions: |
22 | // - Vetur | 36 | // - Vetur |
23 | // - ESLint | 37 | // - ESLint |
24 | // - Vue i18n Ally | 38 | // - i18n Ally |
25 | // - SCSS Everywhere | 39 | // - SCSS Everywhere |
26 | // - SCSS Formatter | 40 | // - SCSS Formatter |
27 | // - Debugger for Chrome | 41 | // - Debugger for Chrome |