From d7d04929d508d65872a861a8ae8f432dcc56ee36 Mon Sep 17 00:00:00 2001 From: "Kevin C. Coram" Date: Mon, 12 Oct 2020 14:41:25 -0400 Subject: [PATCH] Suppress lint errors --- apps/api/src/app/app.gateway.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/api/src/app/app.gateway.ts b/apps/api/src/app/app.gateway.ts index 88c0fd0..f090ec3 100644 --- a/apps/api/src/app/app.gateway.ts +++ b/apps/api/src/app/app.gateway.ts @@ -25,10 +25,12 @@ export class AppGateway constructor(private appService: AppService) {} + // eslint-disable-next-line @typescript-eslint/no-unused-vars afterInit(server: Server) { this.logger.log('Initialized...'); } + // eslint-disable-next-line @typescript-eslint/no-explicit-any,@typescript-eslint/no-unused-vars handleConnection(client: Socket, ...args: any[]) { this.logger.log(`Client connected: ${client.id}`); client.emit(MESSAGE_TO_CLIENT, this.appService.getMessages());