mysticatea / eslint-plugin-eslint-comments

Additional ESLint rules for directive comments of ESLint.
https://mysticatea.github.io/eslint-plugin-eslint-comments/
MIT License
354 stars 44 forks source link

False positives for directive comment with description added in ESLint v7.x. #42

Closed ota-meshi closed 4 years ago

ota-meshi commented 4 years ago

ESLint v7.x supports /* eslint-disable -- description */ comments, but some rules in this plugin do not support this comments.

e.g.

/*eslint eslint-comments/disable-enable-pair: error */

/*eslint-disable no-undef, no-unused-vars -- description */
var foo = bar()

image