diff options
Diffstat (limited to 'cli/tests/workers_round_robin_bench.ts')
-rw-r--r-- | cli/tests/workers_round_robin_bench.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/workers_round_robin_bench.ts b/cli/tests/workers_round_robin_bench.ts index 90ebb0364..e97970f27 100644 --- a/cli/tests/workers_round_robin_bench.ts +++ b/cli/tests/workers_round_robin_bench.ts @@ -7,7 +7,7 @@ const cmdsPerWorker = 400; export interface ResolvableMethods<T> { resolve: (value?: T | PromiseLike<T>) => void; - // eslint-disable-next-line @typescript-eslint/no-explicit-any + // deno-lint-ignore no-explicit-any reject: (reason?: any) => void; } |