Skip to content

Commit 3c3b2cd

Browse files
committed
any is ok
1 parent 5192842 commit 3c3b2cd

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default [
3434
...typescriptEslint.configs["recommended"].rules,
3535
...pluginJs.configs.recommended.rules,
3636
"@typescript-eslint/no-floating-promises": "error",
37-
"@typescript-eslint/no-explicit-any": "warn",
37+
"@typescript-eslint/no-explicit-any": "off",
3838
// allow (_arg: number) => {} and const _foo = 1;
3939
"no-unused-vars": "off",
4040
"@typescript-eslint/no-unused-vars": [

src/client/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ export type CallbackOptions = {
5656

5757
export type WorkflowDefinition<
5858
ArgsValidator extends PropertyValidators,
59-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
6059
ReturnsValidator extends Validator<any, "required", any> | void = any,
6160
> = {
6261
args?: ArgsValidator;

src/client/workflowMutation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,6 @@ export function workflowMutation<ArgsValidator extends PropertyValidators>(
183183
}
184184
}
185185
},
186-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
187186
}) as any;
188187
}
189188

0 commit comments

Comments
 (0)