Skip to content

Commit

Permalink
Enable valid-jsdoc eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
qwerty541 committed Jul 10, 2023
1 parent 317a3d9 commit 8c8b806
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@

// All JSDoc comments must be valid

// "valid-jsdoc": [ "error", {
// "requireReturn": false,
// "requireReturnDescription": false,
// "requireParamDescription": true,
// "prefer": {
// "return": "returns"
// }
// }],
"valid-jsdoc": [ "error", {
"requireReturn": true,
"requireReturnDescription": true,
"requireParamDescription": true,
"prefer": {
"return": "returns"
}
}],

// Best Practices

Expand Down

0 comments on commit 8c8b806

Please sign in to comment.