Suppress lint errors

master
Kevin C. Coram 2020-10-12 14:41:25 -04:00
ebeveyn 15fd272ce3
işleme d7d04929d5
İmzalayan: kevin
GPG Anahtar Kimliği: 0E64ECB9EDE572A3
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme

Dosyayı Görüntüle

@ -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());