8000 Fixes #242 · holtwick/eslint-config@423d1fb · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
Fixes antfu#242
Browse files Browse the repository at this point in the history
Avoid adding undesired @param and @returns lines.
  • Loading branch information
holtwick committed Sep 13, 2023
1 parent fad525d commit 423d1fb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/eslint-config-basic/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,8 +419,13 @@ module.exports = {
'jsdoc/check-values': 'off',
'jsdoc/check-tag-names': 'off',
'jsdoc/no-undefined-types': 'off',
"jsdoc/require-param": 'off',
"jsdoc/require-param-description": 'off',
"jsdoc/require-param-type": 'off',
'jsdoc/require-returns': 'off',
'jsdoc/require-returns-type': 'off',
"jsdoc/require-throws": 'off',
"jsdoc/require-yields": 'off',

// antfu
'antfu/no-import-node-modules-by-path': 'error',
Expand Down

0 comments on commit 423d1fb

Please sign in to comment.
0