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 548 additions and 576 deletions

View File

@ -119,7 +119,7 @@ export class Tab {
/** Get the Id for the tab */
@Method()
getTabId(): string|null {
getTabId(): string | null {
if (this.name) {
return this.name;
}
@ -136,7 +136,7 @@ export class Tab {
this.active = true;
}
private prepareLazyLoaded(): Promise<HTMLElement|void> {
private prepareLazyLoaded(): Promise<HTMLElement | void> {
if (!this.loaded && this.component) {
this.loaded = true;
return attachComponent(this.delegate, this.el, this.component, ['ion-page']);