Skip to content

Commit

Permalink
rm logs
Browse files Browse the repository at this point in the history
  • Loading branch information
matiu committed Aug 6, 2020
1 parent 657e832 commit 599c805
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/providers/wallet/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]
});
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@
"atom": {
"rewriteTsconfig": false
},
"types": ["lodash", "node", "chrome"]
"types": ["lodash", "node", "chrome"],
"rules": {
"no-console": false
}
}
6 changes: 1 addition & 5 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"extends": ["tslint:latest", "tslint-config-prettier"],
"rules": {
// "interface-name": [true, "never-prefix"],
"no-submodule-imports": [
true,
"zone.js",
Expand All @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 599c805

Please sign in to comment.