@stacksjs/gitlint
Version:
Efficient Git Commit Message Linting and Formatting
8 lines (7 loc) • 302 B
TypeScript
import type { LintRule } from './types';
declare const conventionalCommits: LintRule;
declare const headerMaxLength: LintRule;
declare const bodyMaxLineLength: LintRule;
declare const bodyLeadingBlankLine: LintRule;
declare const noTrailingWhitespace: LintRule;
export declare const rules: LintRule[];