Skip to content

Commit 401f384

Browse files
committed
Restore .vscode/settings.json
1 parent 07a9512 commit 401f384

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.vscode/settings.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
// Always remove trailing whitespaces
3+
"files.trimTrailingWhitespace": true,
4+
"files.insertFinalNewline": true,
5+
"files.trimFinalNewlines": true,
6+
"editor.rulers": [
7+
120
8+
],
9+
"[python]": {
10+
"editor.tabSize": 4,
11+
},
12+
"cpplint.lineLength": 120,
13+
"cpplint.filters": [
14+
"-build/include_subdir",
15+
"-runtime/references"
16+
],
17+
"C_Cpp.autoAddFileAssociations": false,
18+
19+
// Exclude build directories and non-essential folders from C++ parsing
20+
"C_Cpp.files.exclude": {
21+
"**/build/**": true,
22+
"**/build_*/**": true,
23+
"**/cmake/external/**": true,
24+
"**/node_modules/**": true,
25+
"**/.git/**": true
26+
},
27+
28+
// Exclude from search but keep in explorer
29+
"search.exclude": {
30+
"**/build/**": true,
31+
"**/build_*/**": true,
32+
"**/cmake/external/**": true,
33+
"**/node_modules/**": true,
34+
"**/.git/**": true
35+
}
36+
}

0 commit comments

Comments
 (0)