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
0cd25a3 and 54d5fa0 dropped the support of eslint@<4.7.0. ESLint changed the behavior about directive comments without backward compatibility in eslint/eslint#9216. And the rules of plugins cannot know the version of ESLint which is running the rule. They are recommending plugin developers to drop support for old ESLint if you want to know the version of ESLint. Eslint-plugin-eslint-comments v2.0.0 handles directive comments of eslint@>=4.7.0.
New features
400cea8 added new eslint-comments/no-aggregating-enable rule. The rule about new behavior of eslint@>=4.7.0. This rule reports eslint-enable directive comments if it affects multiple eslint-disable directive comments. That is confusable behavior that does not exist before [email protected].