Is there an eslint rule that can throw an if you disable a rule that is not triggering an error in the line/file.
For instance, using /* eslint-disable no-console */ would throw an error if used in a file that is not using console.
Does such rule exist already? I'm heavily using eslint in a React project and there seems that there could be many practical uses for such a rule.