Skip to content

Commit

Permalink
feat(eslint): allow missing return in jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
megheaiulian committed Jun 17, 2024
1 parent f1011e3 commit a21666c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions eslint/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@ module.exports = {
radix: 'error',
'require-unicode-regexp': 'error',
strict: 'error',
'valid-jsdoc': 'error',
'valid-jsdoc': [
'error',
{
requireReturn: false,
},
],
},
overrides: [
{
Expand All @@ -119,7 +124,7 @@ module.exports = {
],
settings: {
'import/resolver': {
typescript: {}
typescript: {},
},
},
};

0 comments on commit a21666c

Please # to comment.