From: Daniel Wagner Date: Fri, 20 Jan 2023 09:39:19 +0000 (+0100) Subject: gitignore: Ignore clang build artifacts X-Git-Tag: v2.3~18 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=bc4de89b7431ec68c00978caced8645d00242969;p=users%2Fsagi%2Fnvme-cli.git gitignore: Ignore clang build artifacts When using language server support from clang, the .cache directory is added. Also for getting lsp working properly the compile_commands.json file has to present (which is just a link to Meson generared json file). Signed-off-by: Daniel Wagner --- diff --git a/.gitignore b/.gitignore index 0745eff7..da4804c9 100644 --- a/.gitignore +++ b/.gitignore @@ -10,9 +10,11 @@ subprojects/* !subprojects/*.wrap cscope.* +compile_commands.json tests/__pycache__ tests/nvmetests tests/*.pyc -.build \ No newline at end of file +.build +.cache