From dc4e70b9b8bb82ae56bd3fdde18fec4b6625bc75 Mon Sep 17 00:00:00 2001 From: mehboodian Date: Wed, 31 Mar 2021 18:33:20 +0430 Subject: [PATCH] fix(rules): fix subject-full-stop rule config value type --- @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;