Skip to content

Commit

Permalink
[BE] 음소거한 사용자의 상태를 다른 사용자에게 표시한다. (#158)
Browse files Browse the repository at this point in the history
* config: 의존성 관리

* feat: 서버 종료시 db 정리

* feat: setMute 기능 추가

* feat: 게임 종료시 모든 유저 ready 초기화

* chore: 게임 모드 확률 조정

발음 게임 25%
클레오파트라 게임 75%

* feat: 게임 종료시 모든 유저 ready 초기화 후 updateUsers 이벤트 발행
  • Loading branch information
student079 authored Nov 25, 2024
1 parent fcd16d8 commit b2a93b5
Show file tree
Hide file tree
Showing 14 changed files with 708 additions and 1,113 deletions.
25 changes: 0 additions & 25 deletions be/gameServer/.eslintrc.js

This file was deleted.

12 changes: 12 additions & 0 deletions be/gameServer/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";


/** @type {import('eslint').Linter.Config[]} */
export default [
{files: ["**/*.{js,mjs,cjs,ts}"]},
{languageOptions: { globals: globals.browser }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
];
Loading

0 comments on commit b2a93b5

Please sign in to comment.