use eslint --fix code example
Example 1: eslint fix
npm run lint -- --fix
Example 2: how to run eslint on the whole project
# cd to your root project folder
eslint "./**" --fix
Example 3: running eslint
"lint": "eslint back/*.js && eslint backTest/*.js && eslint front/actions/*.js"