March 2019
Intermediate to advanced
350 pages
7h 28m
English
First of all, we have to install ESLint as follows:
npm install --global eslint
Once the executable is installed, we can run it with the following command:
eslint source.js
The output will tell us if there are errors within the file.
When we install and run it for the first time, we do not see any errors because it is completely configurable and it does not come with any default rules.
Read now
Unlock full access