fix: ignore .envrc for shellcheck
This commit is contained in:
parent
cf42ef54d8
commit
3e711ad998
1 changed files with 4 additions and 1 deletions
|
@ -112,7 +112,10 @@ rec {
|
||||||
src = ./.;
|
src = ./.;
|
||||||
hooks = {
|
hooks = {
|
||||||
nixfmt-rfc-style.enable = true;
|
nixfmt-rfc-style.enable = true;
|
||||||
shellcheck.enable = true;
|
shellcheck = {
|
||||||
|
enable = true;
|
||||||
|
excludes = [ ".envrc" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue