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