From edc971fcd835d31966e61eaa19b5bdfd42612e9a Mon Sep 17 00:00:00 2001 From: Joshua Potter Date: Tue, 28 Nov 2023 09:21:11 -0700 Subject: [PATCH] Anchor most .gitignore entries to the project root. --- specs/clang/template/.gitignore | 12 ++++++------ specs/poetry/template/.gitignore | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/specs/clang/template/.gitignore b/specs/clang/template/.gitignore index 9f6167a..731f196 100644 --- a/specs/clang/template/.gitignore +++ b/specs/clang/template/.gitignore @@ -1,17 +1,17 @@ # Directory used by clangd LSP. -.cache/ +/.cache/ # Directory used by `direnv` to hold `use flake`-generated profiles. -.direnv/ +/.direnv/ # The compilation database produced by `bear`. -compile_commands.json +/compile_commands.json # The directory containing all build outputs. -dist/ +/dist/ # The directory generated by `Doxygen`. -docs/ +/docs/ # A symlink produced by default when running `nix build`. -result +/result diff --git a/specs/poetry/template/.gitignore b/specs/poetry/template/.gitignore index 6123955..98e87c4 100644 --- a/specs/poetry/template/.gitignore +++ b/specs/poetry/template/.gitignore @@ -1,5 +1,5 @@ # Directory used by `direnv` to hold `use flake`-generated profiles. -.direnv/ +/.direnv/ # A symlink produced by default when running `nix build`. -result +/result