From 23ae48ace918d1a64e41bb42b288e72831220484 Mon Sep 17 00:00:00 2001 From: mehboodian Date: Fri, 9 Apr 2021 15:15:58 +0430 Subject: [PATCH 1/3] fix(rules): set body-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 c6cc0bd0ff..503150246c 100644 --- a/@commitlint/types/src/rules.ts +++ b/@commitlint/types/src/rules.ts @@ -91,7 +91,7 @@ export type EnumRuleConfig = RuleConfig< export type RulesConfig = { 'body-case': CaseRuleConfig; 'body-empty': RuleConfig; - 'body-full-stop': RuleConfig; + 'body-full-stop': RuleConfig; 'body-leading-blank': RuleConfig; 'body-max-length': LengthRuleConfig; 'body-max-line-length': LengthRuleConfig; From 5022b0493c19e2d6cb97a865072b560cf5d91218 Mon Sep 17 00:00:00 2001 From: mehboodian Date: Fri, 9 Apr 2021 15:16:19 +0430 Subject: [PATCH 2/3] fix(rules): fix header-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 503150246c..66b9990f95 100644 --- a/@commitlint/types/src/rules.ts +++ b/@commitlint/types/src/rules.ts @@ -102,7 +102,7 @@ export type RulesConfig = { 'footer-max-line-length': LengthRuleConfig; 'footer-min-length': LengthRuleConfig; 'header-case': CaseRuleConfig; - 'header-full-stop': RuleConfig; + 'header-full-stop': RuleConfig; 'header-max-length': LengthRuleConfig; 'header-min-length': LengthRuleConfig; 'references-empty': RuleConfig; From 0067ae5734a2583720203739f02e010f67a5a849 Mon Sep 17 00:00:00 2001 From: mehboodian Date: Fri, 9 Apr 2021 15:16:29 +0430 Subject: [PATCH 3/3] fix(rules): fix signed-off-by 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 66b9990f95..f9bfbd3e6d 100644 --- a/@commitlint/types/src/rules.ts +++ b/@commitlint/types/src/rules.ts @@ -111,7 +111,7 @@ export type RulesConfig = { 'scope-enum': EnumRuleConfig; 'scope-max-length': LengthRuleConfig; 'scope-min-length': LengthRuleConfig; - 'signed-off-by': RuleConfig; + 'signed-off-by': RuleConfig; 'subject-case': CaseRuleConfig; 'subject-empty': RuleConfig; 'subject-full-stop': RuleConfig;