Fixed lint

Change-Id: Icd6ef28d01feaede359e6e70f1d632037dcbabca
diff --git a/src/app/hello.ts b/src/app/hello.ts
index b67e7f6..554b2de 100644
--- a/src/app/hello.ts
+++ b/src/app/hello.ts
@@ -1,6 +1,5 @@
 /// <reference path="../../typings/index.d.ts"/>
 import {Component, OnInit} from '@angular/core';
-import {NgFor} from '@angular/common';
 import {StyleConfig} from './config/style.config';
 import {CoreService} from './services/rest/core.service';
 
@@ -9,7 +8,7 @@
   template: require('./hello.html'),
   providers: [CoreService],
 })
-export class HelloComponent {
+export class HelloComponent implements OnInit {
 
   // declare class properties
   public hello: string;
@@ -25,9 +24,9 @@
     this.coreService.getCoreEndpoints()
       .subscribe(
         endpoints => {
-          this.endpoints = endpoints
+          this.endpoints = endpoints;
         },
         err => console.log
-      )
+      );
   }
 }
diff --git a/src/app/routes.ts b/src/app/routes.ts
index 4c27ed1..724aa65 100644
--- a/src/app/routes.ts
+++ b/src/app/routes.ts
@@ -3,7 +3,7 @@
 import {Component} from '@angular/core';
 import {RouterModule, Routes} from '@angular/router';
 import {HelloComponent} from './hello';
-import {LoginComponent} from "./components/login/login.component";
+import {LoginComponent} from './components/login/login.component';
 
 @Component({
   selector: 'xos-root',