-
Notifications
You must be signed in to change notification settings - Fork 0
/
wolfweez.code-workspace
81 lines (81 loc) · 1.9 KB
/
wolfweez.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
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.renderControlCharacters": true,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.insertSpaces": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"files.trimTrailingWhitespace": true,
"javascript.format.insertSpaceAfterSemicolonInForStatements": false,
"prettier.useTabs": true,
"prettier.tabWidth": 2,
"prettier.semi": false,
"prettier.endOfLine": "lf",
"prettier.singleQuote": true,
// "prettier.eslintIntegration": true,
// "eslint.validate": [
// { "language": "html", "autoFix": true },
// { "language": "vue", "autoFix": true },
// { "language": "javascript", "autoFix": true },
// { "language": "javascriptreact", "autoFix": true }
// ],
// "eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"vetur.format.options.useTabs": true,
"vetur.format.options.tabSize": 2,
"vetur.format.defaultFormatter.html": "prettier",
"vetur.validation.template": false,
"todohighlight.keywords": [
{
"text": "NOTE:",
"color": "#ffffff",
"backgroundColor": "#28C732"
},
{
"text": "OXYGEN:",
"color": "#ffffff",
"backgroundColor": "#A21A56"
}
],
"todo-tree.highlights.enabled": false,
"todo-tree.highlights.customHighlight": {
"TODO": {
"iconColour": "#FCB021"
},
"FIXME": {
"iconColour": "#E9477F"
},
"NOTE": {
"iconColour": "#28C732"
},
"OXYGEN": {
"iconColour": "#A21A56"
}
},
"todo-tree.filtering.excludeGlobs": [
"**/node_modules/**",
"**/dist/**",
"**/build/**",
"**/.vscode/**",
"**/.github/**",
"**/_output/**",
"**/*.min.*",
"**/*.map",
"**/.next/**"
],
"diffEditor.ignoreTrimWhitespace": false,
"files.associations": {
".env-cmdrc.example": "json",
".env-cmdrc": "json",
".releaserc": "json"
},
"stripe.telemetry.enabled": false
}
}