This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new c08e1bafb3 .gitignore: Add the .cache directory generated by clangd
c08e1bafb3 is described below
commit c08e1bafb31ccadf4fc29252306afcc5ed8196b9
Author: Haiyue Wang <[email protected]>
AuthorDate: Mon Oct 28 11:59:00 2024 +0800
.gitignore: Add the .cache directory generated by clangd
Use VSCode + clangd plugin to develop the code, the clangd will save the
metadata into .cache directory, it is about the compile_commands.json:
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=True
Add the .cache into .gitignore for friendly clangd development environment.
Signed-off-by: Haiyue Wang <[email protected]>
---
.gitignore | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitignore b/.gitignore
index e0aead2a9f..9fdaa442e2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,6 +36,7 @@
*.SystemMap
*~
.depend
+/.cache
/.config
/.config.*
/.config-*