forked from KnowageLabs/Knowage-Server-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknowage-vue.code-workspace
44 lines (44 loc) · 1.42 KB
/
knowage-vue.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"prettier.semi": false,
"prettier.useEditorConfig": false,
"scss.lint.float": "warning",
"vetur.format.defaultFormatter.css": "prettier",
"scss.lint.important": "warning",
"prettier.printWidth": 300,
"prettier.singleQuote": true,
"vetur.format.defaultFormatter.html": "prettier",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"eslint.format.enable": true,
"prettier.trailingComma": "none",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.sortJSON": "explicit"
},
"sortJSON.contextMenu": {
"sortJSON": true,
"sortJSONReverse": true,
"sortJSONKeyLength": true,
"sortJSONKeyLengthReverse": true,
"sortJSONAlphaNum": true,
"sortJSONAlphaNumReverse": true,
"sortJSONValues": true,
"sortJSONValuesReverse": true,
"sortJSONType": true,
"sortJSONTypeReverse": true
},
"vetur.format.options.tabSize": 4,
"prettier.tabWidth": 4,
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
},
"extensions": {
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "richie5um2.vscode-sort-json"]
}
}