From 2f0fcc0333792492a0b3d760508b66d12304808a Mon Sep 17 00:00:00 2001 From: worgho2 Date: Tue, 4 Jun 2024 01:08:34 -0300 Subject: [PATCH] fix: Unused lint rules --- .../user-pool-gateway/in-memory-user-pool-gateway.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/api/infrastructure/user-pool-gateway/in-memory-user-pool-gateway.ts b/packages/api/infrastructure/user-pool-gateway/in-memory-user-pool-gateway.ts index 7dd604a..456240a 100644 --- a/packages/api/infrastructure/user-pool-gateway/in-memory-user-pool-gateway.ts +++ b/packages/api/infrastructure/user-pool-gateway/in-memory-user-pool-gateway.ts @@ -1,7 +1,7 @@ import { UserPoolGateway } from '../../application/user-pool-gateway'; export class InMemoryUserPoolGateway implements UserPoolGateway { - // eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars + // eslint-disable-next-line @typescript-eslint/no-unused-vars updateUserPool = async (props: { preSignUpLambdaArn?: string; postConfirmationLambdaArn?: string; @@ -14,7 +14,7 @@ export class InMemoryUserPoolGateway implements UserPoolGateway { verificationSmsMessage?: string; }): Promise => Promise.resolve(); - // eslint-disable-next-line class-methods-use-this, @typescript-eslint/no-unused-vars + // eslint-disable-next-line @typescript-eslint/no-unused-vars updateUserPoolClient = async (props: { clientId: string; callbackUrls?: string[];