-
-
Notifications
You must be signed in to change notification settings - Fork 26.8k
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
"Displaying Lint Output in the Editor" instructions not working in VS Code #860
Comments
I don’t quite understand. In your commit, you changed But you won’t find Did that not work either for you, or did you not try |
PS I know this is frustrating. All of this is needed because of this ESLint issue: eslint/eslint#3458. When ESLint fixes it we won’t need to do extra steps anymore. |
Right, this is a project from a course that I cloned. I noticed that EDIT: I understand where I confused you. In the commit I referenced, the value of |
I'll need to check how VSCode ESLint plugin works. Maybe it has a special global mode? |
Hey @gaearon and @martellaj , to get linting working in VSCode, you need 4 things:
4 is needed as I'm wondering if I can let |
EsLint in VS Code is looking for
|
Description
The "Displaying Lint Output in the Editor" instructions do not work for VS Code.
Expected behavior
I expect my editor to show linting warnings and errors.
Actual behavior
ESLint is unable to load.
Environment
Run these commands in the project folder and fill in their results:
npm ls react-scripts
(if you haven’t ejected): This is coming back empty...node -v
: 6.5.0npm -v
: 3.10.3Then, specify:
Reproducible Demo
My working version of @wesbos's React for Beginners project. I did change the value of
eslintConfig.extends
inpackage.json
like the instructions state. Pull fromc55d10ae48718695a0fca61b0981c8a4974ea92f
to get a state where ESLint didn't work.Workaround
I got ESLint to work in VS Code by adding all of the dependencies (including eslint@3.5.0) as local dev dependencies to my project.
The text was updated successfully, but these errors were encountered: