eslintbot on master
Build: changelog update for 7.2… 7.21.0 (compare)
eslintbot on v7.21.0
btmills on master
Upgrade: @eslint/eslintrc to 0.… (compare)
btmills on eslintrc
btmills on eslintrc
Upgrade: @eslint/eslintrc to 0.… (compare)
cannot find module
errors. we've got a shared eslint config (https://github.com/stellar/product-conventions/blob/master/packages/eslint-config/package.json) but unless i install those deps manually in the project that's using that config, eslint complains it can't find it
it's not a monorepo or anything, i've just got
module.exports = {
extends: ["@stellar/eslint-config"],
rules: {
"import/no-unresolved": 0,
},
};
in .eslintrc.js
locally. gatsby site
node_modules
might vary (I’m not sure how it decides).
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?