Skip to content

Commit 6da1a39

Browse files
committed
gitignore: Added more files to gitignore
Added more files to gitignore, such as files left over from LSPs and compilation.
1 parent c1820f9 commit 6da1a39

File tree

1 file changed

+46
-5
lines changed

1 file changed

+46
-5
lines changed

.gitignore

+46-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,46 @@
1-
.pio
2-
.vscode/.browse.c_cpp.db*
3-
.vscode/c_cpp_properties.json
4-
.vscode/launch.json
5-
.vscode/ipch
1+
# Prerequisites
2+
*.d
3+
4+
# Compiled Object files
5+
*.slo
6+
*.lo
7+
*.o
8+
*.obj
9+
10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
14+
# Compiled Dynamic libraries
15+
*.so
16+
*.dylib
17+
*.dll
18+
19+
# Compiled Static libraries
20+
*.lai
21+
*.la
22+
*.a
23+
*.lib
24+
25+
# Executables
26+
*.exe
27+
*.out
28+
*.app
29+
.pioenvs
30+
.piolibdeps
31+
.clang_complete
32+
.gcc-flags.json
33+
34+
# Custom
35+
.pio/*
36+
*.swp
37+
.vscode/extensions.json
38+
.vscode/
39+
.pio/
40+
hash.h
41+
42+
## ccls/clangd files and compilation files
43+
.ccls
44+
.ccls-cache/
45+
compile_commands.json
46+
.cache/

0 commit comments

Comments
 (0)