From 60a7190edae9f49828c79f4efe788de9eb6b8acf Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 17 Sep 2018 15:52:39 +0200 Subject: [PATCH] refactor(in-app-review): ignore no-irregular-whitespace rule --- src/@ionic-native/plugins/in-app-review/index.ts | 3 +-- tslint.json | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/@ionic-native/plugins/in-app-review/index.ts b/src/@ionic-native/plugins/in-app-review/index.ts index 1681eacda..aad5194d9 100644 --- a/src/@ionic-native/plugins/in-app-review/index.ts +++ b/src/@ionic-native/plugins/in-app-review/index.ts @@ -1,6 +1,7 @@ import { Injectable } from '@angular/core'; import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core'; +/* tslint:disable:no-irregular-whitespace */ /** * @name In App Review * @description @@ -34,7 +35,6 @@ import { Plugin, Cordova, IonicNativePlugin } from '@ionic-native/core'; }) @Injectable() export class InAppReview extends IonicNativePlugin { - /** * Open the inApp review popup * @return {Promise} Returns a promise that resolves when something happens @@ -43,5 +43,4 @@ export class InAppReview extends IonicNativePlugin { requestReview(): Promise { return; // We add return; here to avoid any IDE / Compiler errors } - } diff --git a/tslint.json b/tslint.json index d0970aacf..dd09b715f 100644 --- a/tslint.json +++ b/tslint.json @@ -16,7 +16,6 @@ "member-access": false, "adjacent-overload-signatures": false, "no-angle-bracket-type-assertion": false, - "no-irregular-whitespace": false, "no-constant-condition": false } }