-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
dev_cables.code-workspace
39 lines (38 loc) · 1.02 KB
/
dev_cables.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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSaveTimeout": 1000,
"eslint.alwaysShowStatus": true,
"files.autoSave": "off",
"editor.autoIndent": "full",
"eslint.enable": true,
"prettier.eslintIntegration": true,
"typescript.validate.enable": false,
"javascript.format.enable": false,
"prettier.tabWidth": 4,
"search.useIgnoreFiles": false,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*min.js": true,
"**/*max.js": true,
"**/*.map.*": true,
"*/ace/*": true,
"*dist/*": true,
"*jsdoc*": true,
"*build*": true,
"*/public/*": true,
"*/logs*": true
},
"files.exclude": {
"**/.node_modules": true
}
}
}