From 361b0aeebe6fa18efa9e6f0ecdca9030d97200fe Mon Sep 17 00:00:00 2001 From: Mariano Pardo Date: Fri, 24 Feb 2023 19:47:23 +0100 Subject: [PATCH] chore: remove unnecessarily disabled eslint rule --- src/ApiClient.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ApiClient.ts b/src/ApiClient.ts index 940f178ef..a7e77d12a 100644 --- a/src/ApiClient.ts +++ b/src/ApiClient.ts @@ -91,7 +91,6 @@ const isAbortError = (err?: Error): boolean => { return false } -// eslint-disable-next-line @typescript-eslint/no-explicit-any const isAuthError = (err?: GrpcError): boolean => { if (err && err.code === ERR_CODE_UNAUTHENTICATED) { return true @@ -99,7 +98,6 @@ const isAuthError = (err?: GrpcError): boolean => { return false } -// eslint-disable-next-line @typescript-eslint/no-explicit-any const isNotAuthError = (err?: GrpcError): boolean => !isAuthError(err) /**