mfgames-project-setup-flake/src/configs/conform.nix

23 lines
364 B
Nix

inputs @ { system, nixago, nixago-exts, ... }:
nixago-exts.conform.${system} {
commit = {
header = { length = 89; };
conventional = {
types = [
"build"
"chore"
"ci"
"docs"
"feat"
"fix"
"perf"
"refactor"
"style"
"test"
];
scopes = [ "cli" ];
};
};
}