Skip to content

Commit 1e6142c

Browse files
committed
fix: disable jsdoc/require-jsdoc
1 parent 54ec93c commit 1e6142c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

lib/eslint.mjs

+2-5
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,10 @@ const makeEslintConfig = ({ tsconfigRootDir, globals: globalsIn } = {}) => {
145145
// https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/informative-docs.md
146146
'jsdoc/informative-docs': ['error'],
147147

148-
// Require JSDoc comments on public / exported items.
148+
// Don't require JSDoc comments. Library authors should consider turning this on for external interfaces.
149149
// https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-jsdoc.md
150150
'jsdoc/require-jsdoc': [
151-
'error',
152-
{
153-
publicOnly: true,
154-
},
151+
'off',
155152
],
156153
},
157154
},

0 commit comments

Comments
 (0)