Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit 775ec23

Browse files
resolved lint issues
1 parent e3f1215 commit 775ec23

File tree

10 files changed

+18
-10
lines changed

10 files changed

+18
-10
lines changed

src/app/app.component.spec.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ describe('AppComponent', () => {
1010

1111
beforeEach(async(() => {
1212
TestBed.configureTestingModule({
13-
imports: [RouterTestingModule, BrowserAnimationsModule, MatToolbarModule, MatSidenavModule, MatIconModule, MatButtonModule, MatListModule],
13+
imports: [
14+
RouterTestingModule,
15+
BrowserAnimationsModule,
16+
MatToolbarModule,
17+
MatSidenavModule,
18+
MatIconModule,
19+
MatButtonModule,
20+
MatListModule
21+
],
1422
declarations: [AppComponent]
1523
})
1624
.compileComponents();

src/app/companies/companies.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ export class CompaniesComponent implements OnInit {
1111

1212
ngOnInit() {
1313
}
14-
1514
}
15+

src/app/companies/companies.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ import { routing } from './companies.routing';
77
imports: [routing],
88
declarations: [CompaniesComponent]
99
})
10-
export class CompaniesModule { }
10+
export class CompaniesModule { }

src/app/companies/companies.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ const routes: Routes = [
77
{ path: '', component: CompaniesComponent }
88
];
99

10-
export const routing: ModuleWithProviders = RouterModule.forChild(routes);
10+
export const routing: ModuleWithProviders = RouterModule.forChild(routes);

src/app/operators/operators.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ import { routing } from './operators.routing';
77
imports: [routing],
88
declarations: [OperatorsComponent]
99
})
10-
export class OperatorsModule { }
10+
export class OperatorsModule { }

src/app/operators/operators.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ const routes: Routes = [
77
{ path: '', component: OperatorsComponent }
88
];
99

10-
export const routing: ModuleWithProviders = RouterModule.forChild(routes);
10+
export const routing: ModuleWithProviders = RouterModule.forChild(routes);

src/app/rxjs/rxjs.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ import { routing } from './rxjs.routing';
77
imports: [routing],
88
declarations: [RxjsComponent]
99
})
10-
export class RxjsModule { }
10+
export class RxjsModule { }

src/app/rxjs/rxjs.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ const routes: Routes = [
77
{ path: '', component: RxjsComponent }
88
];
99

10-
export const routing: ModuleWithProviders = RouterModule.forChild(routes);
10+
export const routing: ModuleWithProviders = RouterModule.forChild(routes);

src/app/team/team.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ import { routing } from './team.routing';
77
imports: [routing],
88
declarations: [TeamComponent]
99
})
10-
export class TeamModule { }
10+
export class TeamModule { }

src/app/team/team.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ const routes: Routes = [
77
{ path: '', component: TeamComponent }
88
];
99

10-
export const routing: ModuleWithProviders = RouterModule.forChild(routes);
10+
export const routing: ModuleWithProviders = RouterModule.forChild(routes);

0 commit comments

Comments
 (0)