fix(all): updated tslint rules to latest

This commit is contained in:
Manu Mtz.-Almeida
2018-07-29 13:03:47 +02:00
parent d1969bdf1d
commit 92e21a8cf3
112 changed files with 546 additions and 574 deletions

View File

@ -12,7 +12,7 @@ import { Range, calcCells, calcHeightIndex, doRender, findCellIndex, getRange, g
export class VirtualScroll {
private scrollEl?: HTMLIonScrollElement;
private range: Range = {offset: 0, length: 0};
private range: Range = { offset: 0, length: 0 };
private timerUpdate: any;
private heightIndex?: Uint32Array;
private viewportHeight = 0;
@ -134,7 +134,7 @@ export class VirtualScroll {
this.scrollEl = undefined;
}
@Listen('scroll', {enabled: false, passive: false})
@Listen('scroll', { enabled: false, passive: false })
onScroll() {
this.updateVirtualScroll();
}