-
Notifications
You must be signed in to change notification settings - Fork 208
feat(rumdl): Add support for rumdl #664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| # PLEASE keep this sorted alphabetically. | ||
| config.hooks = mapAttrs (_: mapAttrs (_: mkDefault)) | ||
| rec { | ||
| { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not related to this PR, but the linter marked it as unused, so I removed it.
|
This PR seems to break my devShell: EDIT: I am using NixOS 25.05 Relevant part of my NixOS flake: checks = forAllSystems (system: {
pre-commit-check = inputs.pre-commit-hooks.lib.${system}.run {
src = ./.;
hooks = {
nixfmt-rfc-style = {
enable = true;
excludes = [
"hardware-configuration\\.nix$"
"plasma\\.nix$"
];
};
};
};
});
# Enter a development shell with `nix develop`.
# The hooks will be installed automatically.
# Or run pre-commit manually with `nix develop -c pre-commit run --all-files`
devShells = forAllSystems (system: {
default =
let
pkgs = nixpkgs.legacyPackages.${system};
inherit (self.checks.${system}.pre-commit-check) shellHook enabledPackages;
in
pkgs.mkShell {
inherit shellHook;
buildInputs = enabledPackages;
};
});
}; |
|
It's due to an outdated nixpkgs, check #665 |
|
Thanks, I will just use older revision of git-hooks.nix until it gets a fixed then. |
Fixes #644