Background
When an Ember project consumes a shared eslint configuration, then running lint:js in that project results in many error messages:
Partial log from lint:js
I traced the bug to #131, because the errors go away when I pin ember-eslint-parser to 0.5.10.
Reproduction
https://github.com/ijlee2/ember-workshop/tree/bug-ember-eslint-parser
# Switch to the bug-ember-eslint-parser branch
git clone [email protected]:ijlee2/ember-workshop.git
cd ember-workshop
git checkout bug-ember-eslint-parser
pnpm install
# Check 0.5.10 (no error messages should appear)
cd my-app
pnpm lint:js
# Check 0.5.11 (error messages should appear)
git revert da79b5e627e41003cb61fcbb1faac2c7abc27895
pnpm install
rm .eslintcache
pnpm lint:js
Related issue
Background
When an Ember project consumes a shared
eslintconfiguration, then runninglint:jsin that project results in many error messages:Partial log from
lint:jsI traced the bug to #131, because the errors go away when I pin
ember-eslint-parserto0.5.10.Reproduction
https://github.com/ijlee2/ember-workshop/tree/bug-ember-eslint-parser
Related issue