Skip to content

Commit

Permalink
fix(rules): fix subject-full-stop rule config value type (#2534)
Browse files Browse the repository at this point in the history
  • Loading branch information
xeptore committed Apr 9, 2021
1 parent e998496 commit 2ab3c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion @commitlint/types/src/rules.ts
Expand Up @@ -114,7 +114,7 @@ export type RulesConfig<V = RuleConfigQuality.User> = {
'signed-off-by': RuleConfig<V>;
'subject-case': CaseRuleConfig<V>;
'subject-empty': RuleConfig<V>;
'subject-full-stop': RuleConfig<V>;
'subject-full-stop': RuleConfig<V, string>;
'subject-max-length': LengthRuleConfig<V>;
'subject-min-length': LengthRuleConfig<V>;
'type-case': CaseRuleConfig<V>;
Expand Down

0 comments on commit 2ab3c57

Please sign in to comment.