Skip to content

Commit 65aff23

Browse files
committed
chore(registerTools): inline eslint-disable for handlerStrategy to fix format error
1 parent f9b4c16 commit 65aff23

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/registerTools.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ type RegisterOptions = {
1414
onlyEnabled?: boolean;
1515
handlerStrategy: (
1616
// eslint-disable-next-line @typescript-eslint/no-explicit-any
17-
tool: ToolDefinition<any, any> | DynamicToolDefinition<any>) => (...args: any[]) => any;
17+
tool: ToolDefinition<any, any> | DynamicToolDefinition<any>
18+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
19+
) => (...args: any[]) => any;
1820
};
1921

2022
export function registerTools(

0 commit comments

Comments
 (0)