From 49a74cf9bb95a4502534df55e0385d93eea9949e Mon Sep 17 00:00:00 2001 From: Yash Ladha Date: Tue, 18 Jan 2022 21:20:35 +0530 Subject: [PATCH] tools: add compile_commands to ignore file For developing c++ source files, clangd generates an index file for project via `./configure -C`. We can safely ignore the file from tracking. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index a575a4475b4119..bc986b3c4c0659 100644 --- a/.gitignore +++ b/.gitignore @@ -159,3 +159,6 @@ install_manifest.txt __pycache__ .DS_Store *~ + +# === Rules for C++ development === +compile_commands.json