Skip to content

Commit c08d4f4

Browse files
committed
style: ignore any in default replacer to match
1 parent 0292c6a commit c08d4f4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: src/utils.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ export function isAsyncIterable<T = unknown>(
7070
}
7171

7272
/** @private */
73-
export function jsonErrorReplacer(_key: string, val: any) {
73+
export function jsonErrorReplacer(
74+
_key: string,
75+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
76+
val: any,
77+
) {
7478
if (
7579
val instanceof Error &&
7680
// GraphQL errors implement their own stringer

0 commit comments

Comments
 (0)