Eslint already has the reportUnusedDisableDirectives setting, and starting in eslint v9, that setting is enabled by default: https://eslint.org/docs/latest/use/configure/rules#report-unused-eslint-disable-comments
It also has auto-fix, so running eslint --fix will automatically remove any unused disable directives. I don't think the no-unused-disable is adding anything extra, so it should be removed from this plugin
Eslint already has the
reportUnusedDisableDirectivessetting, and starting in eslint v9, that setting is enabled by default: https://eslint.org/docs/latest/use/configure/rules#report-unused-eslint-disable-commentsIt also has auto-fix, so running
eslint --fixwill automatically remove any unused disable directives. I don't think theno-unused-disableis adding anything extra, so it should be removed from this plugin