-
Notifications
You must be signed in to change notification settings - Fork 8
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
Configure ESLint's own rules #1815
Conversation
Update the ESLint config to enable and configure most of its own rules. This iteration on the configuration is mostly focussed on enabling rules the code base already complies with or can trivially comply with to ensure consistency going forward. Any rule that has been disabled may be reconsidered in the future. Note that rules marked as "deprecated" by ESLint were not included here.
"jsdoc/check-examples": ["off"], // TODO: enable & configure when possible | ||
"jsdoc/check-examples": ["off"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Re-evaluating this TODO
as part of this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rule still does not work as of jsdoc/[email protected]
so I'll leave it disabled.
I won't create an issue to enable this because I could not find a suitable way to track when this can be enabled again.
Relates to #1803, #1812
Summary
Update the ESLint config to enable and configure most of its own rules. This iteration on the configuration is mostly focused on enabling rules the code base already complies with or can trivially comply with to ensure consistency going forward. Any rule that has been disabled may be reconsidered in the future.