diff mbox series

[v2,5/6] .gitignore: add compile_commands.json

Message ID 20230901200353.90290-6-jmcosta944@gmail.com
State Superseded
Delegated to: Tom Rini
Headers show
Series Port gen_compile_commands.py from Linux to U-Boot | expand

Commit Message

João Marcos Costa Sept. 1, 2023, 8:03 p.m. UTC
Add Clang's compilation database file (i.e. compile_commands.json) to
.gitignore, at the root of the repository.

Signed-off-by: Joao Marcos Costa <jmcosta944@gmail.com>
---
 .gitignore | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/.gitignore b/.gitignore
index 002f95de4f..261a1d6754 100644
--- a/.gitignore
+++ b/.gitignore
@@ -109,3 +109,6 @@  __pycache__
 
 # moveconfig database
 /moveconfig.db
+
+# Clang's compilation database file
+/compile_commands.json