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