UNPKG

@modyqyw/fabric

Version:

Opinionated shareable specifications for git-based JavaScript/TypeScript projects.

21 lines (18 loc) 460 B
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 };