Given a comment like this:
i++; // eslint-disable-line no-plusplus
Is there any syntax we can add a description or explanation for why we're disabling the rule, on the same line, without triggering ESLint to complain that there's no rule called "-- our description"?
i++; // eslint-disable-line no-plusplus - our description
In this simple example it's trivial enough to use // eslint-disable-next-line - but in a situation where you have multiple lines that might change order like object keys, or import statements (if using automatic alphabetization) then that breaks down.
Is there any supported method for achieving this?