From b703bda0bee82288793b9b8e7376b7826c58ce80 Mon Sep 17 00:00:00 2001 From: Joao Marcos Costa Date: Sun, 1 Oct 2023 12:00:33 +0200 Subject: [PATCH] .gitignore: add compile_commands.json 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 Tested-by: Joao Paulo Goncalves --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index aa01604107..84051b7bfd 100644 --- a/.gitignore +++ b/.gitignore @@ -109,3 +109,6 @@ __pycache__ # qconfig database /qconfig.db + +# Clang's compilation database file +/compile_commands.json -- 2.39.5