-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvector.code-workspace
54 lines (54 loc) · 1.35 KB
/
vector.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
51
52
53
54
{
"folders": [
{
"path": "."
}
],
"settings": {
"breadcrumbs.enabled": true,
"editor.bracketPairColorization.enabled": true,
"editor.cursorBlinking": "phase",
"editor.formatOnPaste": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 200,
"editor.minimap.showSlider": "always",
"editor.smoothScrolling": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"eslint.validate": [
"javascript",
"javascriptreact"
],
"files.exclude": {
".scannerwork/": true,
"dist/": false,
"node_modules/": false,
"output/": true,
"**/.idea": true,
"**/*.iml": true,
"**/out": true,
"**/gen": true,
"**/logs": true,
"**/*.log": true,
"**/.DS_Store": true,
".*": false
},
"files.associations": {
".branchlintrc": "json",
".huskyrc": "json",
".lintstagedrc": "json",
".postcssrc": "json",
".releaserc": "json",
".stylelintrc": "json",
".vcmrc": "json",
"*.css": "postcss",
"*.pcss": "postcss",
".*ignore": "ignore",
"*.js.tmpl": "javascript",
},
"javascript.format.enable": false,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"workbench.settings.enableNaturalLanguageSearch": false
}
}