how to use eslint code example
Example 1: eslint npm install
$ npm install eslint --save-dev
$ ./node_modules/.bin/eslint --init
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"