lint: reenable tslint arrow-return-shorthand, fix

This commit is contained in:
Jason Dreyzehner 2018-02-19 12:39:47 -05:00
parent d29d69224c
commit be542d4cff
2 changed files with 3 additions and 4 deletions

View File

@ -338,8 +338,8 @@ export class PersistenceProvider {
removeAllWalletData(walletId: string): Promise<void> {
return this.clearLastAddress(walletId)
.then(() => { return this.removeTxHistory(walletId); })
.then(() => { return this.clearBackupFlag(walletId); });
.then(() => this.removeTxHistory(walletId))
.then(() => this.clearBackupFlag(walletId));
};
setAmazonGiftCards(network: string, gcs: any): Promise<void> {

View File

@ -31,7 +31,6 @@
"no-string-literal": false,
"no-var-keyword": false,
"curly": false,
"member-access": false,
"arrow-return-shorthand": false
"member-access": false
}
}