From c3bef384ff1a3ec428ba7c86bc778c50a9e6eead Mon Sep 17 00:00:00 2001 From: Chancellor Clark Date: Thu, 8 Jul 2021 13:04:28 -0500 Subject: [PATCH] fix(types): adds TargetCaseType[] for CaseRuleConfig --- @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 3bef376b76..739c1f61ab 100644 --- a/@commitlint/types/src/rules.ts +++ b/@commitlint/types/src/rules.ts @@ -77,7 +77,7 @@ export type RuleConfig< export type CaseRuleConfig = RuleConfig< V, - TargetCaseType + TargetCaseType | TargetCaseType[] >; export type LengthRuleConfig = RuleConfig< V,