I'm aware of the single-line syntax to disable an ESLint rule for the current or next line.
What I would like to know is if there is something similar to modify a rule for a specific line.
E.g.:
// eslint-modify-next-line yoda: ["error", "never", {"exceptRange": true}]
if (0 < count && count <= max) {
// do something
}