Skip to content

Commit

Permalink
fix: Unused lint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
worgho2 committed Jun 4, 2024
1 parent 33ec95e commit 2f0fcc0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -14,7 +14,7 @@ export class InMemoryUserPoolGateway implements UserPoolGateway {
verificationSmsMessage?: string;
}): Promise<void> => 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[];
Expand Down

0 comments on commit 2f0fcc0

Please sign in to comment.