Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable eslint-jsdoc #12019

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Add notes
  • Loading branch information
ggetz committed Jun 4, 2024
commit 51313c7ef263819cac808f544d9aaa811766145e
4 changes: 2 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ export default [
],
"jsdoc/require-jsdoc": "off", // Only lint existing jsdoc
"jsdoc/no-undefined-types": "off", // Ignore types for now
"jsdoc/valid-types": "off", // Our link tags are structured differently
"jsdoc/no-defaults": "off", // We use default parameters instead of enforcing with ES6 for now
"jsdoc/require-returns": "off",
"jsdoc/require-returns-description": "off",
"jsdoc/require-returns-type": "off",
Expand All @@ -76,8 +78,6 @@ export default [
"jsdoc/check-param-names": "off",
"jsdoc/check-property-names": "off",
"jsdoc/check-types": "off",
"jsdoc/valid-types": "off",
"jsdoc/no-defaults": "off", // We use default parameters instead of enforcing with ES6 for now
},
},
{
Expand Down
Loading