feat: eslint 적용 및 관련 코드 일괄 수정

This commit is contained in:
2026-01-05 15:46:47 +00:00
parent cb312f02b3
commit c965b1120f
387 changed files with 39808 additions and 38800 deletions
+1 -2
View File
@@ -31,8 +31,7 @@ const isMain = (): boolean => {
if (isMain()) {
const role = process.env.GAME_API_ROLE ?? 'server';
const run =
role === 'battle-sim-worker' ? runBattleSimWorker : runGameApiServer;
const run = role === 'battle-sim-worker' ? runBattleSimWorker : runGameApiServer;
run().catch((error) => {
console.error('[game-api] failed to start', error);
process.exitCode = 1;