From 975b610d9f0edd8b4c2ac6f23ba99b0ba74c4c0e Mon Sep 17 00:00:00 2001 From: xermicus Date: Fri, 21 Nov 2025 14:43:44 +0100 Subject: [PATCH] Add the LLVM dir to the `.ignore` file (#419) LLVM is now a submodule and no longer in `.gitignore`. Thus, some dev tools I use, like `rg` and `fd`, now consider the `llvm/` directory. This PR fixes that by adding `llvm/` to the `.ignore` file. Signed-off-by: xermicus --- .ignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .ignore diff --git a/.ignore b/.ignore new file mode 100644 index 0000000..39f633c --- /dev/null +++ b/.ignore @@ -0,0 +1,2 @@ +# This is no longer in .gitignore; we add it here (honored by tools like rg and fd). +llvm/