From 599c80560e72f7867bfa1078569c51f8baf45677 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Thu, 6 Aug 2020 18:16:50 -0300 Subject: [PATCH] rm logs --- src/providers/wallet/wallet.ts | 1 - tsconfig.json | 5 ++++- tslint.json | 6 +----- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/providers/wallet/wallet.ts b/src/providers/wallet/wallet.ts index be7e60e4af..a627acdf94 100644 --- a/src/providers/wallet/wallet.ts +++ b/src/providers/wallet/wallet.ts @@ -464,7 +464,6 @@ export class WalletProvider { isoCode: string, lastDayRatesArray: any ): string { -console.log('[wallet.ts.467]', coin, lastDayRatesArray[coin]); // TODO const balanceLastDay = this.rateProvider.toFiat(balanceSat, isoCode, coin, { customRate: lastDayRatesArray[coin] }); diff --git a/tsconfig.json b/tsconfig.json index 161398492e..0a12c954fe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,5 +22,8 @@ "atom": { "rewriteTsconfig": false }, - "types": ["lodash", "node", "chrome"] + "types": ["lodash", "node", "chrome"], + "rules": { + "no-console": false + } } diff --git a/tslint.json b/tslint.json index ad4ff3353f..013161bb52 100644 --- a/tslint.json +++ b/tslint.json @@ -1,7 +1,6 @@ { "extends": ["tslint:latest", "tslint-config-prettier"], "rules": { - // "interface-name": [true, "never-prefix"], "no-submodule-imports": [ true, "zone.js", @@ -10,10 +9,6 @@ "ts-md5/dist/md5", "ionic-angular/gestures/gesture" ], - - // "no-any": true, - - // Temporarily relax rules "member-ordering": false, "variable-name": false, "no-empty": false, @@ -26,6 +21,7 @@ "prefer-for-of": false, "forin": false, "prefer-const": false, + "no-console": false, "no-unused-expression": false, "no-eval": false, "no-object-literal-type-assertion": false,