Skip to content

Commit

Permalink
Update packages/core/src/types.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Francesco Trotta <github@fasttime.org>
  • Loading branch information
nzakas and fasttime authored Nov 26, 2024
1 parent 2d6fd9c commit d49741f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/core/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ export type RuleFixType = "code" | "whitespace";
* name of a node type or a selector, or is a method that will be called at specific
* times during the traversal.
*/
export type RuleVisitor = Record<string, ((...args: any[]) => void) | undefined>;
export type RuleVisitor = Record<
string,
((...args: any[]) => void) | undefined
>;

/* eslint-enable @typescript-eslint/no-explicit-any -- Necessary to allow subclasses to work correctly */

Expand Down

0 comments on commit d49741f

Please sign in to comment.