Skip to content

Commit 9833151

Browse files
committed
Pass lint rules.
1 parent cd79cb1 commit 9833151

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

APM - Final/app/app.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { WelcomeComponent } from './home/welcome.component';
1010
import { ProductModule } from './products/product.module';
1111

1212
@NgModule({
13-
imports: [
13+
imports: [
1414
BrowserModule,
1515
HttpModule,
1616
appRoutingModule,
@@ -19,4 +19,4 @@ import { ProductModule } from './products/product.module';
1919
declarations: [ AppComponent, WelcomeComponent ],
2020
bootstrap: [ AppComponent ]
2121
})
22-
export class AppModule { }
22+
export class AppModule { }

APM - Final/app/app.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ const appRoutes: Routes = [
88
{ path: 'welcome', component: WelcomeComponent }
99
];
1010

11-
export const appRoutingModule: ModuleWithProviders =
11+
export const appRoutingModule: ModuleWithProviders =
1212
RouterModule.forRoot(appRoutes);

APM - Final/app/products/product.routing.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ export const productRoutes: Routes = [
99
{ path: 'product/:id', component: ProductDetailComponent }
1010
];
1111

12-
export const productRoutingModule: ModuleWithProviders = RouterModule.forChild(productRoutes);
12+
export const productRoutingModule: ModuleWithProviders =
13+
RouterModule.forChild(productRoutes);

0 commit comments

Comments
 (0)