eslint —fix —quiet
, which I think just suppresses (some) messages, not actual checking?
@webOS101 --max-warnings
only takes into account warnings left after autofix.
In practice this means non-autofixable warnings, although it could also happen if one rule's autofix causes a violation in another rule, and that rule's autofix causes a violation in another rule, etc. (in such a way that there is a cycle/loop). ESLint bails out after 10 autofix attempts, so in that degenerate case, an autofixable rule could fix and still leave a warning (on the 10th pass).