Skip to content

Commit 84af568

Browse files
committed
fix ng lint
1 parent 50f9b0e commit 84af568

File tree

106 files changed

+1545
-1377
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+1545
-1377
lines changed

src/app/primengPage/components/button/buttondemo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ export class ButtonDemo {
1111
count() {
1212
this.clicks++;
1313
}
14-
}
14+
}

src/app/primengPage/components/checkbox/checkboxdemo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { CheckboxDemo } from './checkboxdemo';
44

55
@NgModule({

src/app/primengPage/components/chips/chipsdemo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { ChipsDemo } from './chipsdemo';
44

55
@NgModule({

src/app/primengPage/components/codehighlighter/codehighlighterdemo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { CodeHighlighterDemo } from './codehighlighterdemo';
44

55
@NgModule({

src/app/primengPage/components/colorpicker/colorpickerdemo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { ColorPickerDemo } from './colorpickerdemo';
44

55
@NgModule({

src/app/primengPage/components/datalist/datalistdemo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { DataListDemo } from './datalistdemo';
44

55
@NgModule({

src/app/primengPage/components/datatable/datatablecruddemo.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ import { Component, OnInit } from '@angular/core';
22
import { Car } from '../../components/domain/car';
33
import { CarService } from '../../service/carservice';
44

5+
class PrimeCar implements Car {
6+
7+
constructor(public vin?, public year?, public brand?, public color?) { }
8+
}
9+
510
@Component({
611
templateUrl: './datatablecruddemo.html',
712
styles: [`
@@ -14,6 +19,7 @@ import { CarService } from '../../service/carservice';
1419
}
1520
`]
1621
})
22+
1723
// tslint:disable-next-line:component-class-suffix
1824
export class DataTableCrudDemo implements OnInit {
1925

@@ -78,8 +84,3 @@ export class DataTableCrudDemo implements OnInit {
7884
return this.cars.indexOf(this.selectedCar);
7985
}
8086
}
81-
82-
class PrimeCar implements Car {
83-
84-
constructor(public vin?, public year?, public brand?, public color?) { }
85-
}

src/app/primengPage/components/fieldset/fieldsetdemo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { FieldsetDemo } from './fieldsetdemo';
44

55
@NgModule({

src/app/primengPage/components/fileupload/fileuploaddemo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { FileUploadDemo } from './fileuploaddemo';
44

55
@NgModule({

src/app/primengPage/components/galleria/galleriademo-routing.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { NgModule } from '@angular/core';
2-
import { RouterModule } from '@angular/router'
2+
import { RouterModule } from '@angular/router';
33
import { GalleriaDemo } from './galleriademo';
44

55
@NgModule({

0 commit comments

Comments
 (0)