-
Notifications
You must be signed in to change notification settings - Fork 29.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
docs: How to get eslint to work on VS code? #32764
Comments
I try vscode and work out the success configuration file. {
"eslint.format.enable": true,
"eslint.nodePath": "./tools/node_modules/eslint",
"eslint.options": {
"configFile": "./.eslintrc.js"
},
"eslint.validate": [
"javascript"
]
} obviously, you have to download the example |
Where is this? Also I don't want this to apply globally as I work with other projects as well... |
Ah, workspace specific settings. Perfect. Thank you! |
Would it make sense to include a .vscode folder into repro with these settings? |
I think no, people don't use the same Editor or IDE. and we shouldn't include any of its configuration files in the repo. But document to introduce it may be ok |
https://github.com/nodejs/node-code-ide-configs |
I previously received some help with this. Unfortunately I didn't document it and after re-installing my computer it no longer works.
Would anyone mind describing how to get it to work? I'll add a section in the docs for future reference.
The text was updated successfully, but these errors were encountered: