Skip to content

Commit

Permalink
checks/pre-commit-hooks: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Dec 16, 2024
1 parent 53abbfb commit d0cad61
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions checks/pre-commit-hooks/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ pre-commit-hooks-nix.lib.${pkgs.system}.run {
clang-tidy.enable = true;
luacheck.enable = true;
pre-commit-hook-ensure-sops.enable = true;
treefmt.enable = true;
treefmt.settings.fail-on-change = false;
treefmt.packageOverrides.treefmt = inputs.treefmt-nix.lib.mkWrapper pkgs ../../treefmt.nix;
treefmt = {
enable = true;
settings.fail-on-change = false;
packageOverrides.treefmt = inputs.treefmt-nix.lib.mkWrapper pkgs ../../treefmt.nix;
};
};
}

0 comments on commit d0cad61

Please sign in to comment.