Skip to content

Commit

Permalink
Fixed the Prettier Issues in Backend
Browse files Browse the repository at this point in the history
  • Loading branch information
shivansh-bhatnagar18 committed May 29, 2024
1 parent 58c1a27 commit 5751ec5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions backend/eslint.config.js
Original file line number Diff line number Diff line change
@@ -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"
}
}
];
'jsdoc/require-description': 'error',
'jsdoc/check-values': 'error',
},
},
];
2 changes: 1 addition & 1 deletion backend/gameStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 5751ec5

Please sign in to comment.