Skip to content

Commit

Permalink
chore: fix linting errors (angular#6044)
Browse files Browse the repository at this point in the history
Fixes a couple of linting errors that were introduced in master.
  • Loading branch information
crisbeto authored and andrewseguin committed Jul 28, 2017
1 parent aea8df4 commit ba000bd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/table/cell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
CdkCellDef,
CdkColumnDef,
CdkHeaderCell,
CdkHeaderCellDef
CdkHeaderCellDef,
} from '@angular/cdk/table';

/** Workaround for https://github.com/angular/angular/issues/17849 */
Expand Down
2 changes: 1 addition & 1 deletion src/lib/table/row.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
CdkRow,
CDK_ROW_TEMPLATE,
CdkRowDef,
CdkHeaderRowDef
CdkHeaderRowDef,
} from '@angular/cdk/table';

/** Workaround for https://github.com/angular/angular/issues/17849 */
Expand Down
4 changes: 4 additions & 0 deletions tools/dashboard/src/app/dashboard-app.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import {Component} from '@angular/core';
import {AngularFireDatabase, FirebaseListObservable} from 'angularfire2/database';

// This import is only used to define a generic type. The current TypeScript version incorrectly
// considers such imports as unused (https://github.com/Microsoft/TypeScript/issues/14953)
// tslint:disable-next-line:no-unused-variable
import {PayloadResult, CoverageResult} from './data-definitions';

@Component({
Expand Down

0 comments on commit ba000bd

Please sign in to comment.