-
Notifications
You must be signed in to change notification settings - Fork 1
/
.vscode
42 lines (42 loc) · 1020 Bytes
/
.vscode
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
{
"window.zoomLevel": 0,
"workbench.colorTheme": "Default Light+",
"git.autofetch": true,
"files.autoSave": "off",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.formatOnPaste": true,
"[javascript]": {
"editor.defaultFormatter": "HookyQR.beautify"
},
"editor.tabSize": 2,
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
{
"language": "vue",
"autoFix": true
}
],
"eslint.enable": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"eslint.alwaysShowStatus": true,
"eslint.format.enable": true,
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
],
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"vue-html": "html",
"vue": "html"
},
}