Skip to content

Commit 0412820

Browse files
committed
uodate gitignore
1 parent d3acbf2 commit 0412820

File tree

3 files changed

+38
-4
lines changed

3 files changed

+38
-4
lines changed

.bazelversion

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9.0.0

.gitignore

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@
3333
*.su
3434
*.idb
3535
*.pdb
36+
*.gcda
37+
*.gcno
38+
*.gcov
39+
*.profraw
40+
*.profdata
3641

3742
#-------------------------------------------------------------------------------
3843
# Kernel Module Compile Results
@@ -48,9 +53,11 @@ dkms.conf
4853
#-------------------------------------------------------------------------------
4954
# Visual Studio Code
5055
#-------------------------------------------------------------------------------
51-
.vscode/
5256
.history/
5357
*.vsix
58+
.vscode/ipch/
59+
.vscode/*.local.json
60+
*.code-workspace
5461

5562
#-------------------------------------------------------------------------------
5663
# macOS metadata
@@ -79,14 +86,18 @@ Temporary Items
7986
/bazel-*
8087
/bazel.iml
8188
/output/
82-
.bazelversion
8389
user.bazelrc
84-
MODULE.bazel.lock
8590

8691
#-------------------------------------------------------------------------------
8792
# Temporary files
8893
#-------------------------------------------------------------------------------
8994
/tmp/*
95+
*.log
96+
*.tmp
97+
*.swp
98+
*.swo
99+
*~
100+
.#*
90101

91102
#-------------------------------------------------------------------------------
92103
# Sphinx documentation
@@ -103,8 +114,21 @@ MODULE.bazel.lock
103114
/lib/*
104115
*.in
105116
*.clang-tidy
117+
compile_commands.json
118+
compile_flags.txt
119+
.cache/
120+
.clangd/
121+
.clangd
122+
/.idea/
123+
/.vs/
124+
/CMakeFiles/
125+
/CMakeCache.txt
126+
/cmake_install.cmake
127+
/build/
128+
/build-*/
129+
/dist/
130+
/out/
106131
*.png
107132
StyleGuide.md
108133
_archive/*
109-
MODULE.bazel.lock
110134

.vscode/extensions.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"recommendations": [
3+
"llvm-vs-code-extensions.vscode-clangd",
4+
"ms-vscode.cpptools",
5+
"bazelbuild.vscode-bazel",
6+
"vadimcn.vscode-lldb"
7+
],
8+
"unwantedRecommendations": []
9+
}

0 commit comments

Comments
 (0)