Skip to content

Commit ba000bd

Browse files
crisbetoandrewseguin
authored andcommitted
chore: fix linting errors (#6044)
Fixes a couple of linting errors that were introduced in master.
1 parent aea8df4 commit ba000bd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src/lib/table/cell.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
CdkCellDef,
1313
CdkColumnDef,
1414
CdkHeaderCell,
15-
CdkHeaderCellDef
15+
CdkHeaderCellDef,
1616
} from '@angular/cdk/table';
1717

1818
/** Workaround for https://github.com/angular/angular/issues/17849 */

src/lib/table/row.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
CdkRow,
1313
CDK_ROW_TEMPLATE,
1414
CdkRowDef,
15-
CdkHeaderRowDef
15+
CdkHeaderRowDef,
1616
} from '@angular/cdk/table';
1717

1818
/** Workaround for https://github.com/angular/angular/issues/17849 */

tools/dashboard/src/app/dashboard-app.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import {Component} from '@angular/core';
22
import {AngularFireDatabase, FirebaseListObservable} from 'angularfire2/database';
3+
4+
// This import is only used to define a generic type. The current TypeScript version incorrectly
5+
// considers such imports as unused (https://github.com/Microsoft/TypeScript/issues/14953)
6+
// tslint:disable-next-line:no-unused-variable
37
import {PayloadResult, CoverageResult} from './data-definitions';
48

59
@Component({

0 commit comments

Comments
 (0)