From 3ee8c3e45e5f38126f6cb2b181fc3c88d96f0503 Mon Sep 17 00:00:00 2001 From: Yash Ladha <18033231+yashLadha@users.noreply.github.com> Date: Mon, 24 Jan 2022 20:09:31 +0530 Subject: [PATCH] tools: add compile_commands to ignore file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For developing c++ source files, clangd generates an index file for project via `./configure -C`. We can safely ignore the file from tracking. PR-URL: https://github.com/nodejs/node/pull/41580 Reviewed-By: Richard Lau Reviewed-By: Luigi Pinca Reviewed-By: Michaƫl Zasso --- .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