Add a README section for style guide where it mentions how to organize
the typescript imports.
Signed-off-by: Tiago Melo <tmelo@suse.com>
or, alternatively:
src/app> ng generate component core/auth/login -m=core/auth
```
+
+## Recommended style guide
+
+### Typescript
+
+Group the imports based on its source and separate them with a blank line.
+
+The source groups can be either from angular, external or internal.
+
+Example:
+```javascript
+import { Component } from '@angular/core';
+import { Router } from '@angular/router';
+
+import { ToastsManager } from 'ng2-toastr';
+
+import { Credentials } from '../../../shared/models/credentials.model';
+import { HostService } from './services/host.service';
+```
\ No newline at end of file