From 2ab3c57b709ddad3fc98d768309ac4fdac8cb68a Mon Sep 17 00:00:00 2001 From: mbehboodian Date: Fri, 9 Apr 2021 14:08:40 +0430 Subject: [PATCH] fix(rules): fix subject-full-stop rule config value type (#2534) --- @commitlint/types/src/rules.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@commitlint/types/src/rules.ts b/@commitlint/types/src/rules.ts index efc69d0cc6..c6cc0bd0ff 100644 --- a/@commitlint/types/src/rules.ts +++ b/@commitlint/types/src/rules.ts @@ -114,7 +114,7 @@ export type RulesConfig = { 'signed-off-by': RuleConfig; 'subject-case': CaseRuleConfig; 'subject-empty': RuleConfig; - 'subject-full-stop': RuleConfig; + 'subject-full-stop': RuleConfig; 'subject-max-length': LengthRuleConfig; 'subject-min-length': LengthRuleConfig; 'type-case': CaseRuleConfig;