From f5c79a2d3a2c543225d8f3a3687288d5ef7de034 Mon Sep 17 00:00:00 2001 From: apetitco Date: Mon, 22 Dec 2025 15:45:33 +0100 Subject: [PATCH] (eslint): Fixed issues with eslint --- src/tic-tac-toe/src/app.ts | 4 ++-- src/tic-tac-toe/src/game.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tic-tac-toe/src/app.ts b/src/tic-tac-toe/src/app.ts index 4e18aa8..977bb8f 100644 --- a/src/tic-tac-toe/src/app.ts +++ b/src/tic-tac-toe/src/app.ts @@ -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(); } }); diff --git a/src/tic-tac-toe/src/game.ts b/src/tic-tac-toe/src/game.ts index 0d929ad..721ec91 100644 --- a/src/tic-tac-toe/src/game.ts +++ b/src/tic-tac-toe/src/game.ts @@ -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.