File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments