Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 473 Bytes

eslint.md

File metadata and controls

23 lines (16 loc) · 473 Bytes

Install ESLint

From the terminal run the following command:

npm i -g eslint

If you get an EACCESS error, run this command instead:

sudo npm i -g eslint

To validate this step is complete run this command:

eslint --version

You should see some numbers like so:

The exact numbers will probably be different, but as long as you're getting numbers, you can count this as a success!