May 2018
Intermediate to advanced
512 pages
11h 3m
English
You can customize the coding style enforcement and code generation behavior in VS Code and Angular CLI. When it comes to JavaScript, I prefer StandardJS settings, which codifies a minimal approach to writing code, while maintaining great readability. This means 2-spaces for tabs and no semicolons. In addition to the reduced keystrokes, StandardJS also takes less space horizontally, which is especially valuable when your IDE can only utilize half of the screen with the other half taken up by the browser. You can read more about StandardJS at: https://standardjs.com/.
With the default settings, your code will look like this:
import { AppComponent } from "./app.component";
With StandardJS settings, your code will look like this: ...
Read now
Unlock full access