Skip to content

Commit 9f1097f

Browse files
committed
add vscode 配置
1 parent bf1481f commit 9f1097f

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

vscode-setting.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"extensions.ignoreRecommendations": false,
3+
"team.showWelcomeMessage": false,
4+
"git.enableSmartCommit": true,
5+
"vsicons.dontShowNewVersionMessage": true,
6+
"git.autofetch": true,
7+
"react.beautify.onSave": true,
8+
"files.associations": {
9+
"*.js": "javascriptreact"
10+
},
11+
"git.confirmSync": false,
12+
"explorer.confirmDelete": false,
13+
"[markdown]": {},
14+
"eslint.enable": true,
15+
"eslint.options": {
16+
"extensions": [
17+
".js",
18+
".jsx",
19+
".vue"
20+
]
21+
},
22+
"eslint.validate": [
23+
"javascript",
24+
"javascriptreact",
25+
{
26+
"language": "vue",
27+
"autoFix": true
28+
}
29+
],
30+
"vetur.validation.template": false,
31+
"eslint.autoFixOnSave": true,
32+
"editor.tabSize": 2,
33+
"jest.autoEnable": false,
34+
"jest.pathToConfig": "./.jest.js",
35+
"terminal.integrated.rendererType": "dom",
36+
"window.zoomLevel": 0,
37+
"editor.quickSuggestions": {
38+
"strings": true
39+
},
40+
"diffEditor.renderSideBySide": true
41+
}

0 commit comments

Comments
 (0)