Skip to content

Commit c9dedfd

Browse files
committed
Add some VSCODE stuff to gitignore...
Allow settings to stop naggin me that it has added assosiation types
1 parent 4f6d7e2 commit c9dedfd

File tree

2 files changed

+56
-2
lines changed

2 files changed

+56
-2
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,8 @@ Testing/Temporary/
3838
**/.DS_Store
3939

4040
# Windows
41-
**/thumbs.db
41+
**/thumbs.db
42+
43+
#VSCODE
44+
.vscode/.cortex-debug.registers.state.json
45+
.vscode/.cortex-debug.peripherals.state.json

.vscode/settings.json

+51-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,55 @@
55
"-DNRF5_SDK_PATH=${env:NRF5_SDK_PATH}",
66
],
77
"cmake.generator": "Unix Makefiles",
8-
"clang-tidy.buildPath": "build/compile_commands.json"
8+
"clang-tidy.buildPath": "build/compile_commands.json",
9+
"files.associations": {
10+
"array": "cpp",
11+
"atomic": "cpp",
12+
"bit": "cpp",
13+
"*.tcc": "cpp",
14+
"bitset": "cpp",
15+
"cctype": "cpp",
16+
"chrono": "cpp",
17+
"clocale": "cpp",
18+
"cmath": "cpp",
19+
"cstdarg": "cpp",
20+
"cstddef": "cpp",
21+
"cstdint": "cpp",
22+
"cstdio": "cpp",
23+
"cstdlib": "cpp",
24+
"ctime": "cpp",
25+
"cwchar": "cpp",
26+
"cwctype": "cpp",
27+
"deque": "cpp",
28+
"unordered_map": "cpp",
29+
"vector": "cpp",
30+
"exception": "cpp",
31+
"algorithm": "cpp",
32+
"functional": "cpp",
33+
"iterator": "cpp",
34+
"memory": "cpp",
35+
"memory_resource": "cpp",
36+
"numeric": "cpp",
37+
"optional": "cpp",
38+
"random": "cpp",
39+
"ratio": "cpp",
40+
"string": "cpp",
41+
"string_view": "cpp",
42+
"system_error": "cpp",
43+
"tuple": "cpp",
44+
"type_traits": "cpp",
45+
"utility": "cpp",
46+
"fstream": "cpp",
47+
"initializer_list": "cpp",
48+
"iosfwd": "cpp",
49+
"istream": "cpp",
50+
"limits": "cpp",
51+
"new": "cpp",
52+
"ostream": "cpp",
53+
"sstream": "cpp",
54+
"stdexcept": "cpp",
55+
"streambuf": "cpp",
56+
"cinttypes": "cpp",
57+
"typeinfo": "cpp"
58+
}
959
}

0 commit comments

Comments
 (0)