Skip to content

Commit dc20247

Browse files
committed
chore: 工作区设置
1 parent 26d3ad9 commit dc20247

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.vscode/settings.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"files.eol": "\n",
3+
"editor.formatOnSave": true,
4+
"editor.codeActionsOnSave": {
5+
"source.fixAll": true
6+
},
7+
"editor.defaultFormatter": "esbenp.prettier-vscode",
8+
"todo-tree.filtering.excludeGlobs": ["**/node_modules", "**/dist"],
9+
"todo-tree.general.tags": ["BUG", "FIXME", "TODO", "HACK", "XXX", "TAG", "DONE", "NOTE", "INFO"],
10+
"todo-tree.highlights.customHighlight": {
11+
"BUG": {
12+
"icon": "bug",
13+
"foreground": "#F56C6C"
14+
},
15+
"FIXME": {
16+
"icon": "flame",
17+
"foreground": "#FF9800"
18+
},
19+
"TODO": {
20+
"icon": "checklist",
21+
"foreground": "#FFEB38"
22+
},
23+
"HACK": {
24+
"icon": "versions",
25+
"foreground": "#E040FB"
26+
},
27+
"XXX": {
28+
"icon": "unverified",
29+
"foreground": "#E91E63"
30+
},
31+
"TAG": {
32+
"icon": "tag",
33+
"foreground": "#409EFF"
34+
},
35+
"DONE": {
36+
"icon": "verified",
37+
"foreground": "#0dff00"
38+
},
39+
"NOTE": {
40+
"icon": "note",
41+
"foreground": "#67C23A"
42+
},
43+
"INFO": {
44+
"icon": "info",
45+
"foreground": "#909399"
46+
}
47+
}
48+
}

0 commit comments

Comments
 (0)