-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCoopCare.code-workspace
50 lines (50 loc) · 1.34 KB
/
CoopCare.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.tabSize": 2,
"editor.formatOnPaste": true,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": [
"source.fixAll.eslint"
],
"prettier.tabWidth": 2,
"prettier.printWidth": 80,
"vetur.validation.template": false,
"vetur.format.enable": false,
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.js": "prettier-eslint",
"vetur.format.defaultFormatterOptions": {
"js-beautify-html": {
"wrap_attributes": "force-expand-multiline"
},
"prettyhtml": {
"printWidth": 100,
"singleQuote": false,
"wrapAttributes": false,
"sortAttributes": false
}
},
"typescript.tsdk": "node_modules/typescript/lib",
"vetur.experimental.templateInterpolationService": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"vue"
],
"i18n-ally.localesPaths": [
"src/i18n"
],
"i18n-ally.pathMatcher": "{locale}/index.json",
"i18n-ally.sourceLanguage": "de-DE",
"i18n-ally.displayLanguage": "de-DE",
"i18n-ally.keystyle": "nested"
}
}