From 5813a9f14d6b083040ffee4c60589a2d5028e6ac Mon Sep 17 00:00:00 2001 From: Sebastian Wendel Date: Mon, 26 Dec 2022 20:43:46 +0100 Subject: [PATCH] diabled check for Unused argument --- nix/checks.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nix/checks.nix b/nix/checks.nix index 14772bd..4d3ae60 100644 --- a/nix/checks.nix +++ b/nix/checks.nix @@ -11,7 +11,7 @@ with self.pkgs.${system}; { hooks = { alejandra.enable = true; nix-linter.enable = true; - statix .enable = true; + statix.enable = true; }; settings.nix-linter.checks = [ "DIYInherit" @@ -24,7 +24,6 @@ with self.pkgs.${system}; { "SequentialLet" "SetLiteralUpdate" "UnfortunateArgName" - "UnneededRec" "UnusedLetBind" "UpdateEmptySet" "BetaReduction"