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 authored and rickstaa committed Aug 10, 2023
1 parent c04dd42 commit c3983f9
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 @@ -20,14 +20,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 c3983f9

Please sign in to comment.