git-identities: remove hooks config for cabal

It's actually pretty annoying to run the linter all the time
This commit is contained in:
Primrose 2025-11-17 21:20:17 +08:00
parent 51352a91d0
commit 9b52493e5f
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -19,8 +19,6 @@ let
blameIgnore = {
blame.ignoreRevsFile = ".git-blame-ignore-revs";
};
hooks = scriptsPath: { core.hooksPath = scriptsPath; };
in
[
# Univ stuff
@ -54,9 +52,6 @@ in
{
url = "github.com";
path = "haskell/cabal.git";
contents = lib.mkMerge [
blameIgnore
(hooks "${./hooks/cabal}")
];
contents = blameIgnore;
}
]