diff --git a/backend/eslint.config.js b/backend/eslint.config.js index e9c7ea8..cdae4e7 100644 --- a/backend/eslint.config.js +++ b/backend/eslint.config.js @@ -1,14 +1,14 @@ -import jsdoc from "eslint-plugin-jsdoc"; +import jsdoc from 'eslint-plugin-jsdoc'; export default [ { - files: ["**/*.js"], + files: ['**/*.js'], plugins: { - jsdoc: jsdoc + jsdoc: jsdoc, }, rules: { - "jsdoc/require-description": "error", - "jsdoc/check-values": "error" - } - } -]; \ No newline at end of file + 'jsdoc/require-description': 'error', + 'jsdoc/check-values': 'error', + }, + }, +]; diff --git a/backend/gameStore.js b/backend/gameStore.js index edbbec6..a1d417c 100644 --- a/backend/gameStore.js +++ b/backend/gameStore.js @@ -8,7 +8,7 @@ export function createGame() { /** * Retrieves a game from the store using its id. - * + * * @param {string} id Game id * @returns {GameEngine|null} GameEngine instance */