December 2017
Beginner
372 pages
10h 32m
English
If there is one feature in Angular CLI which is my favorite, then linting is the one. Angular CLI integrates with the tslint JSON file and allows us to run the linting rules on our code base and help make sure we are following the style guides and the best practices defined for our project.
The command for running the linting on our code base is shown here:
ng lint
The Angular CLI on this command will run through our code base and check whether there are any violations based on the rules defined.
Read now
Unlock full access