-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblue-might.code-workspace
More file actions
82 lines (82 loc) · 2.04 KB
/
blue-might.code-workspace
File metadata and controls
82 lines (82 loc) · 2.04 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"folders": [
{
"path": "."
}
],
"settings": {
"typescript.suggest.paths": false,
"javascript.suggest.paths": false,
"breadcrumbs.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": [
"typescript",
"javascript",
"javascriptreact",
"vue",
"html"
],
"stylelint.validate": [
"css",
"less",
"postcss",
"vue"
],
"json.schemas": [
{
"fileMatch": [
"firebase.json"
],
"url": "https://raw.githubusercontent.com/firebase/firebase-tools/master/schema/firebase-config.json"
}
],
"files.exclude": {
".history/": true,
".nuxt/": false,
".scannerwork/": true,
"dist/": false,
"**/node_modules": false,
"output/": true,
"test/wdio/": true,
"**/.idea": true,
"**/*.iml": true,
"**/out": true,
"**/gen": true,
"**/logs": true,
"**/*.log": true,
"**/.DS_Store": true,
".*": false
},
"files.associations": {
".huskyrc": "json",
".lintstagedrc": "json",
".postcssrc": "json",
".releaserc": "json",
".stylelintrc": "json",
".vcmrc": "json",
"*.css": "postcss",
"*.pcss": "postcss",
".*ignore": "ignore",
"*.js.tmpl": "javascript",
"*.html.tmpl": "html"
},
"javascript.format.enable": false,
"path-intellisense.mappings": {
"@": "${workspaceRoot}/src",
"@@": "${workspaceRoot}",
"@blue-might/app": "${workspaceRoot}/packages/app",
"@blue-might/frontend": "${workspaceRoot}/packages/frontend"
},
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"workbench.settings.enableNaturalLanguageSearch": false
},
"extensions": {}
}