From 795d513c7f933e3f23f12319d910bd0904a8e928 Mon Sep 17 00:00:00 2001 From: Fawn Date: Tue, 15 Apr 2025 09:52:43 -0600 Subject: [PATCH] Add clangd cache to .gitignore (#7846) * Add /.cache/ to .gitignore Normally clangd's .cache exists in /build/, which is already in the .gitignore, but if cmake is run in the repository root instead of /build/ the cache is in turn generated in the repository root. * Also add compile_commands.json to .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index cc2823ba0..5afe75307 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ /plugins/ZynAddSubFx/zynaddsubfx/doc/gen/Makefile /data/locale/*.qm Brewfile.lock.json +/.cache/ +compile_commands.json