Suppress lint errors
parent
15fd272ce3
commit
d7d04929d5
|
@ -25,10 +25,12 @@ export class AppGateway
|
||||||
|
|
||||||
constructor(private appService: AppService) {}
|
constructor(private appService: AppService) {}
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
afterInit(server: Server) {
|
afterInit(server: Server) {
|
||||||
this.logger.log('Initialized...');
|
this.logger.log('Initialized...');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any,@typescript-eslint/no-unused-vars
|
||||||
handleConnection(client: Socket, ...args: any[]) {
|
handleConnection(client: Socket, ...args: any[]) {
|
||||||
this.logger.log(`Client connected: ${client.id}`);
|
this.logger.log(`Client connected: ${client.id}`);
|
||||||
client.emit(MESSAGE_TO_CLIENT, this.appService.getMessages());
|
client.emit(MESSAGE_TO_CLIENT, this.appService.getMessages());
|
||||||
|
|
Loading…
Reference in New Issue