-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed the Prettier Issues in Backend
- Loading branch information
1 parent
58c1a27
commit 5751ec5
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
}, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters