diff --git a/@commitlint/rules/src/types.ts b/@commitlint/rules/src/types.ts index cb07498673..968f80f358 100644 --- a/@commitlint/rules/src/types.ts +++ b/@commitlint/rules/src/types.ts @@ -19,7 +19,7 @@ export type RuleOutcome = [boolean, string?]; * All rules should provide the most sensible rule condition and value. */ export type Rule = ( - parse: Commit, + parsed: Commit, when?: RuleCondition, value?: Value ) => RuleOutcome;