@@ -35,7 +35,7 @@ export type TestingLibrarySettings = {
35
35
36
36
export type TestingLibraryContext <
37
37
TOptions extends readonly unknown [ ] ,
38
- TMessageIds extends string
38
+ TMessageIds extends string ,
39
39
> = Readonly <
40
40
TSESLint . RuleContext < TMessageIds , TOptions > & {
41
41
settings : TestingLibrarySettings ;
@@ -45,7 +45,7 @@ export type TestingLibraryContext<
45
45
export type EnhancedRuleCreate <
46
46
TOptions extends readonly unknown [ ] ,
47
47
TMessageIds extends string ,
48
- TRuleListener extends TSESLint . RuleListener = TSESLint . RuleListener
48
+ TRuleListener extends TSESLint . RuleListener = TSESLint . RuleListener ,
49
49
> = (
50
50
context : TestingLibraryContext < TOptions , TMessageIds > ,
51
51
optionsWithDefault : Readonly < TOptions > ,
@@ -156,7 +156,7 @@ export type DetectionOptions = {
156
156
export function detectTestingLibraryUtils <
157
157
TOptions extends readonly unknown [ ] ,
158
158
TMessageIds extends string ,
159
- TRuleListener extends TSESLint . RuleListener = TSESLint . RuleListener
159
+ TRuleListener extends TSESLint . RuleListener = TSESLint . RuleListener ,
160
160
> (
161
161
ruleCreate : EnhancedRuleCreate < TOptions , TMessageIds , TRuleListener > ,
162
162
{ skipRuleReportingCheck = false } : Partial < DetectionOptions > = { }
0 commit comments