You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although the comments in the rules section are quite well-organized, some of them are outdated, incorrect, or missing official documentation links as ESLint has been updated.
Therefore, I would like to suggest updating the property comments in eslint-config-airbnb-base. If this suggestion is accepted, I can create a PR for it.
Here’s an example of the proposed change:
Before:
// disallow use of Object.prototypes builtins directly// https://eslint.org/docs/rules/no-prototype-builtins'no-prototype-builtins': 'error',
After:
/** * Disallow calling certain `Object.prototype` methods directly on objects. * * @link https://eslint.org/docs/latest/rules/no-prototype-builtins */'no-prototype-builtins': 'error',
If there are any other suggestions, I’d be happy to incorporate them.
The text was updated successfully, but these errors were encountered:
Hello,
Although the comments in the
rules
section are quite well-organized, some of them are outdated, incorrect, or missing official documentation links as ESLint has been updated.Therefore, I would like to suggest updating the property comments in
eslint-config-airbnb-base
. If this suggestion is accepted, I can create a PR for it.Here’s an example of the proposed change:
If there are any other suggestions, I’d be happy to incorporate them.
The text was updated successfully, but these errors were encountered: