extends
. I have a shareable config file "eslint-config-myconfig.js" inside a private module "@foo/common". I've npm link
ed the private module into my project, and am trying to include it with "extends": "@foo/common/eslint-config-myconfig"
. Sadly, eslint is saying it can't find the config file. So... what am I doing wrong?
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).