Skip to content

Commit 2ab3c57

Browse files
authored
fix(rules): fix subject-full-stop rule config value type (#2534)
1 parent e998496 commit 2ab3c57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

@commitlint/types/src/rules.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export type RulesConfig<V = RuleConfigQuality.User> = {
114114
'signed-off-by': RuleConfig<V>;
115115
'subject-case': CaseRuleConfig<V>;
116116
'subject-empty': RuleConfig<V>;
117-
'subject-full-stop': RuleConfig<V>;
117+
'subject-full-stop': RuleConfig<V, string>;
118118
'subject-max-length': LengthRuleConfig<V>;
119119
'subject-min-length': LengthRuleConfig<V>;
120120
'type-case': CaseRuleConfig<V>;

0 commit comments

Comments
 (0)