fix: ignore .envrc for shellcheck

This commit is contained in:
Felix Schröter 2025-05-18 19:50:24 +02:00
parent cf42ef54d8
commit 3e711ad998
Signed by: felschr
GPG key ID: 671E39E6744C807D

View file

@ -112,7 +112,10 @@ rec {
src = ./.;
hooks = {
nixfmt-rfc-style.enable = true;
shellcheck.enable = true;
shellcheck = {
enable = true;
excludes = [ ".envrc" ];
};
};
};
};