Skip to content

Commit

Permalink
feat: update warn to error for jsdoc and tsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
doprz committed Nov 16, 2024
1 parent 55851a0 commit b9f4176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ module.exports = {
'jsdoc/newline-after-description': 'off',
'react/require-default-props': 'off',
'jsdoc/require-jsdoc': [
'warn',
'error',
{
enableFixer: false,
publicOnly: true,
Expand Down Expand Up @@ -172,7 +172,7 @@ module.exports = {
],
},
],
'tsdoc/syntax': 'warn',
'tsdoc/syntax': 'error',
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-unused-vars': [
'warn',
Expand Down

0 comments on commit b9f4176

Please sign in to comment.