Add clangd compilation databases to gitignore
The clangd language server uses a file called compile_commands.json to
interpret the source tree. This is generated by CMake and must be
present in the source tree in order to use clangd properly.
Add this to the gitignore to improve the developer experience for users
of clangd.
Signed-off-by: David Horstmann <david.horstmann@arm.com>
diff --git a/.gitignore b/.gitignore
index 288c71b..e483bc7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -60,3 +60,6 @@
/TAGS
/cscope*.out
/tags
+
+# Clangd compilation database
+compile_commands.json