UNPKG

commitlint-plugin-tense

Version:
10 lines (9 loc) 272 B
import type { Rule } from '@commitlint/types'; import { type Tense } from '../library/ensure-tense'; interface RuleOptions { allowedTenses?: Tense[]; firstOnly?: boolean; allowlist?: string[]; } export declare const subjectTense: Rule<RuleOptions>; export {};