diff options
author | pacien | 2020-09-25 16:01:49 +0200 |
---|---|---|
committer | pacien | 2020-09-25 16:01:49 +0200 |
commit | e93f7b1eb84c083d67567115284c0002a3a7d5fc (patch) | |
tree | 8d373e8f7f571485e1330928f43b090ed004c525 /viewer/visualstudio.code-workspace | |
parent | 8e3ac8fe44bebb38e1882ca7f06b8100078ad88d (diff) | |
parent | fd542f75a1d94ee5f804d0925823276b97f38581 (diff) | |
download | ldgallery-e93f7b1eb84c083d67567115284c0002a3a7d5fc.tar.gz |
Merge branch 'develop' for release v2.0v2.0
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 |