Answers for "how to run eslint for entire project"

1

running eslint

#install eslint in project
npm install eslint --save-dev

#initialize in root folder
node_modules/.bin/eslint --init

#Add the snippet below into "script" in package.json file.
"lint": "eslint ."

#Run 
npm run lint
Posted by: Guest on August-19-2021
-1

how to run eslint on the whole project

# cd to your root project folder
eslint "./**" --fix
Posted by: Guest on October-14-2020

Code answers related to "how to run eslint for entire project"

Browse Popular Code Answers by Language