ddc-commit-hooks
Version:
Configurable commit hook setup
18 lines (17 loc) • 389 B
TypeScript
export interface config {
preCommit: {
gitlabCi: boolean;
circleCi: boolean;
esLintCheck: boolean;
maxFileSize: number;
cypress: string;
robot: string;
dotOnlyCheck: boolean;
};
commitMsg: {
glob: string;
maxLineLength: number;
titleLength: number;
};
}
export declare const defaults: config;