flake/git.hooks: enable more checks
Some checks failed
/ Build Nix targets (push) Has been cancelled

This commit is contained in:
Felix Buehler 2025-11-10 23:55:17 +01:00
parent cdde12395d
commit 0e72b4bd01

View file

@ -87,12 +87,17 @@
# enable pre-commit checks # enable pre-commit checks
pre-commit.settings = { pre-commit.settings = {
hooks = { hooks = {
actionlint.enable = true;
deadnix = { deadnix = {
enable = true; enable = true;
settings.noLambdaPatternNames = true; settings.noLambdaPatternNames = true;
}; };
editorconfig-checker.enable = true;
end-of-file-fixer.enable = true;
flake-checker.enable = true; flake-checker.enable = true;
keep-sorted.enable = true;
markdownlint.enable = true; markdownlint.enable = true;
nil.enable = true;
nixfmt-rfc-style.enable = true; nixfmt-rfc-style.enable = true;
shellcheck.enable = true; shellcheck.enable = true;
statix.enable = true; statix.enable = true;