aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-05-29 21:59:42 +0800
committerFabio Berger <me@fabioberger.com>2017-05-29 21:59:42 +0800
commita331943c11b8602f4c8781243dc1fac5d9c595bf (patch)
tree83a6e143f6db7a6f7c99e589161b27a034548168 /src/utils
parent80ce5678345a20a6b6d30e134965f53ada735044 (diff)
downloaddexon-sol-tools-a331943c11b8602f4c8781243dc1fac5d9c595bf.tar
dexon-sol-tools-a331943c11b8602f4c8781243dc1fac5d9c595bf.tar.gz
dexon-sol-tools-a331943c11b8602f4c8781243dc1fac5d9c595bf.tar.bz2
dexon-sol-tools-a331943c11b8602f4c8781243dc1fac5d9c595bf.tar.lz
dexon-sol-tools-a331943c11b8602f4c8781243dc1fac5d9c595bf.tar.xz
dexon-sol-tools-a331943c11b8602f4c8781243dc1fac5d9c595bf.tar.zst
dexon-sol-tools-a331943c11b8602f4c8781243dc1fac5d9c595bf.zip
Use disable-next-line instead of disable and always put rule that is being disabled
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/utils.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/utils.ts b/src/utils/utils.ts
index 2098a67b3..336eaf7bb 100644
--- a/src/utils/utils.ts
+++ b/src/utils/utils.ts
@@ -12,9 +12,8 @@ export const utils = {
return new BN(value.toString(), 10);
},
consoleLog(message: string): void {
- /* tslint:disable */
+ // tslint:disable-next-line: no-console
console.log(message);
- /* tslint:enable */
},
isParityNode(nodeVersion: string): boolean {
return _.includes(nodeVersion, 'Parity');