(eslint): Fixed issues with eslint

This commit is contained in:
apetitco 2025-12-22 15:45:33 +01:00
parent a940447039
commit f5c79a2d3a
2 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@ import * as auth from '@shared/auth';
import * as swagger from '@shared/swagger';
import * as utils from '@shared/utils';
import { Server } from 'socket.io';
import type { TicTacToeImpl } from '@shared/database/mixin/tictactoe';
// import type { TicTacToeImpl } from '@shared/database/mixin/tictactoe';
declare const __SERVICE_NAME: string;
@ -83,7 +83,7 @@ async function onReady(fastify: FastifyInstance, game: TTC) {
turn: game.currentPlayer,
lastResult: result,
});
// setGameOutcome();
// setGameOutcome();
}
});

View file

@ -1,4 +1,4 @@
import type { TicTacToeData } from '@shared/database/mixin/tictactoe';
// import type { TicTacToeData } from '@shared/database/mixin/tictactoe';
// Represents the possible states of a cell on the board.
// `null` means that the cell is empty.