disabled yamllinter

This commit is contained in:
Sebastian Wendel 2023-01-18 14:39:40 +01:00
parent 0df1e7e6dd
commit 54ff0ffc1a
No known key found for this signature in database
GPG key ID: 14ED8B1EC3371ECE

View file

@ -11,13 +11,9 @@ 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 = [
settings = {
nix-linter.checks = [
"DIYInherit"
"EmptyInherit"
"EmptyLet"
@ -40,4 +36,5 @@ with self.pkgs.${system}; {
"no-AlphabeticalBindings"
];
};
};
}