diff --git a/nix/checks.nix b/nix/checks.nix index 4f3f084..1dc3cbb 100644 --- a/nix/checks.nix +++ b/nix/checks.nix @@ -11,33 +11,30 @@ with self.pkgs.${system}; { hooks = { alejandra.enable = true; nix-linter.enable = true; - yamllint.enable = true; - # isort.enable = true; - # black.enable = true; - # shellcheck.enable = true; - # markdownlint.enable = true; }; - settings.nix-linter.checks = [ - "DIYInherit" - "EmptyInherit" - "EmptyLet" - "EtaReduce" - "LetInInheritRecset" - "ListLiteralConcat" - "NegateAtom" - "SequentialLet" - "SetLiteralUpdate" - "UnfortunateArgName" - "UnneededRec" - "UnusedArg" - "UnusedLetBind" - "UpdateEmptySet" - "BetaReduction" - "EmptyVariadicParamSet" - "UnneededAntiquote" - "no-FreeLetInFunc" - "no-AlphabeticalArgs" - "no-AlphabeticalBindings" - ]; + settings = { + nix-linter.checks = [ + "DIYInherit" + "EmptyInherit" + "EmptyLet" + "EtaReduce" + "LetInInheritRecset" + "ListLiteralConcat" + "NegateAtom" + "SequentialLet" + "SetLiteralUpdate" + "UnfortunateArgName" + "UnneededRec" + "UnusedArg" + "UnusedLetBind" + "UpdateEmptySet" + "BetaReduction" + "EmptyVariadicParamSet" + "UnneededAntiquote" + "no-FreeLetInFunc" + "no-AlphabeticalArgs" + "no-AlphabeticalBindings" + ]; + }; }; }