-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvue.code-workspace
42 lines (42 loc) · 1.34 KB
/
vue.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
{
"folders": [
{
"path": "."
}
],
"settings": {
// "editor.fontWeight": "600", //字体粗细
// "editor.fontSize": 16, //字体大小
"breadcrumbs.enabled": true, //内容上方的面包屑
"editor.formatOnPaste": true, //复制时候自动格式化
"editor.accessibilityPageSize": 12, //屏幕阅读器的可视区域
"editor.tabCompletion": "on", //tab的最佳补全
"editor.detectIndentation": true, //检测文件是否启动tabsize
"editor.tabSize": 2,
"eslint.enable": true,
"explorer.confirmDelete": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "vue"],
"stylelint.validate": ["css", "less", "vue", "html"],
"prettier.endOfLine": "auto",
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
}
}
}