how to apply eslint code example
Example 1: installing eslint globally
npm install -g eslint
Example 2: how to run eslint on the whole project
# cd to your root project folder
eslint "./**" --fix
npm install -g eslint
# cd to your root project folder
eslint "./**" --fix