Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed Oct 31, 2023
1 parent 1943845 commit 7c5af91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/class-collision.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ export default {
context
)
}
return defineVisitors({ context, options, settings, config }, visitNode)
return defineVisitors({ context, settings }, visitNode)
},
} as Rule.RuleModule
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/class-order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,6 @@ export default {
context.report(descriptor)
}
}
return defineVisitors({ context, options, settings, config }, visitNode)
return defineVisitors({ context, settings }, visitNode)
},
} as Rule.RuleModule
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/class-validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ export default {
context
)
}
return defineVisitors({ context, options, settings, config }, visitNode)
return defineVisitors({ context, settings }, visitNode)
},
} as Rule.RuleModule

0 comments on commit 7c5af91

Please sign in to comment.