Under construction ...
- Config
- Interfaces
- Angular vendor
- Other vendors
- Modules
- Services
- Pipes
- Classes
- Components
- Tools
Bad :
import { HttpModule, Http } from '@angular/http';
Bad (unsorted) :
import { HttpModule } from '@angular/http';
import { Http } from '@angular/http';
Good (sorted alphabetically) :
import { Http } from '@angular/http';
import { HttpModule } from '@angular/http';