-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid "extends" eslint config option inside "overrides" entry #11
Comments
Having the same issue. Any fix? |
Yeah, this was a mistake on my part. That feature is not supported. I'll be updating the course later this year most likely |
Until then, is there a work-around for making eslint support typescript files? I see that the completed module on master has the following config:
where the parser is being set and the extends are added instead of in overrides, but when running, this throws an error.
Considering that this course claims it was 'updated for 2020' in recent marketing, should this not have been refreshed to a working state? |
This was updated in November (for 2020). There wasn't an error before, but things move fast and change a lot in the JavaScript ecosystem. I'm getting this error now as well (despite After digging a little bit, I found this workaround: typescript-eslint/typescript-eslint#890 Basically, add I will be updating things later this year and we'll be in a good place again. |
This happens in the code for the lesson to add support for eslint to support TypeScript files. In that lesson there's an instruction to add a "extends" config inside the "overrides" section intended to tailor the eslint config for TypeScript files.
Here's the exact line:
static-testing-tools/.eslintrc
Line 24 in 2854551
The text was updated successfully, but these errors were encountered: