December 2017
Beginner
372 pages
10h 32m
English
Let's run the lint command on our Trello code base and look at the violations we have. We will run the following command first:
ng lint
On running this command, we see multiple errors, as shown here:

As we can see, the errors are very difficult to read so let's run the command again and this time we will use the format flag as well, as shown here:
ng lint --format stylish
Now, the output is as shown in the following screenshot:
>You can see the difference once we added the format flag. Now we can easily read the ...
Read now
Unlock full access