Skip to content

Commit 139ebf8

Browse files
committed
添加 VSCode 设置文件以配置文件排除和编辑器选项
1 parent 3ba556f commit 139ebf8

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.vscode/settings.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"files.exclude": {
3+
"**/*.o.cmd": true,
4+
"**/*.ko.cmd": true,
5+
"**/*.mod.cmd": true,
6+
"**/*.cmd": true,
7+
"**/*.order": true,
8+
"**/*.symvers": true,
9+
"**/*.o": true,
10+
"**/*.mod": true,
11+
"**/android-wuwa.mod.c": true,
12+
"**/android-wuwa.lds": true,
13+
"**/.*.*.cmd": true,
14+
"**/.*.d": true,
15+
"**/.*.S": true
16+
},
17+
"[c]": {
18+
"editor.detectIndentation": false,
19+
"editor.tabSize": 4,
20+
"editor.insertSpaces": true,
21+
"editor.rulers": [80, 100]
22+
},
23+
"files.associations": {
24+
"*.h": "c",
25+
"ratio": "c",
26+
"array": "c",
27+
"string_view": "c",
28+
"initializer_list": "c",
29+
"random": "cpp"
30+
},
31+
"editor.indentSize": 4,
32+
"editor.insertSpaces": true,
33+
"editor.detectIndentation": false
34+
}

0 commit comments

Comments
 (0)