eslint-plugin-eslint-comments icon indicating copy to clipboard operation
eslint-plugin-eslint-comments copied to clipboard

Additional ESLint rules for directive comments of ESLint.

Results 40 eslint-plugin-eslint-comments issues
Sort by recently updated
recently updated
newest added

I propose that the `allowWholeFile` should be set to true by default if it is not specified by the end-user. Setting up this plugin for the first time was frustrating,...

Thx for the plugin. Is it possible to add "allowEslintDisable" setting that will accept an array of rule names? Motivation: Consider "vue/no-bare-strings-in-template" rule that requires that all strings inside template...

I figured I'd give [multi line comments for `require-description` ](https://github.com/mysticatea/eslint-plugin-eslint-comments/issues/55)a try. It seems to work?

Hi! Is it possible to have a comment above the rule work? I've not done a lot of eslint work, but happy to fix this if you think its possible.

Was surprised to find that setting this to warn still results in auto fix, unfortunately that makes this library unusable when a disable directive is being used for an autogenerated...

Thanks for the awesome plugin! We're running into a bit of a tricky issue in our repo. We have some files with certain lint rules that are expected to sometimes...

disabling eslint-comments/no-unused-disable for the next line fails because it reports itself as its own failure. Autofix would result in removing the disable directive and the next line's disable directive as...

ESLint v8.0.0 is [released](https://eslint.org/blog/2021/10/eslint-v8.0.0-released) 🎉 devDependency compatibility with ESLint 8: - [ ] [`@mysticatea/eslint-plugin`](https://github.com/mysticatea/eslint-plugin) (https://github.com/mysticatea/eslint-plugin/issues/31) - [ ] https://github.com/mysticatea/eslint-plugin/pull/29 - [ ] https://github.com/mysticatea/eslint-plugin/pull/32 - [ ] Release - [ ]...

The fix of `eslint-comments/no-unused-disable` should remove line enterily.

I would like to enforce directive comments to use block comment syntax on a single line, such as the following: ```js /* eslint-disable no-undef */ ``` The following styles should...