vaibhav.yadav
Fri Mar 15 2024
When eslint is not working on your repository in local for any reason you can try restarting the ES Lint Server on VS Code, and if the issue is cause cause server is not reading the config from root directory you can set
#javascript #eslint
root: true
in your eslint config file, that should resolve the issue. And to fix all your lint issue in a single commit you can use command npx eslint . --fix
.#javascript #eslint