@modyqyw/fabric
Version:
Opinionated shareable specifications for git-based JavaScript/TypeScript projects.
21 lines (18 loc) • 460 B
TypeScript
interface Options {
/**
* Use commitlint.
*
* Enabled by default if you have commitlint installed.
*/
commitlint?: boolean;
/**
* Use lint-staged.
*
* Enabled by default if you have lint-staged installed.
*/
lintStaged?: boolean;
}
declare function simpleGitHooks(options?: Options, userConfig?: Record<string, string>): {
[x: string]: string;
};
export { type Options as O, simpleGitHooks as s };