diff --git a/src/app/tabs/debugger/debuggerUI/vmDebugger/utils/SolidityTypeFormatter.js b/src/app/tabs/debugger/debuggerUI/vmDebugger/utils/SolidityTypeFormatter.js index fcbbe04284..cce01ed3a7 100644 --- a/src/app/tabs/debugger/debuggerUI/vmDebugger/utils/SolidityTypeFormatter.js +++ b/src/app/tabs/debugger/debuggerUI/vmDebugger/utils/SolidityTypeFormatter.js @@ -1,9 +1,6 @@ var yo = require('yo-yo') var BN = require('ethereumjs-util').BN -/* jslint eqeqeq: false */ -/* jslint eqeq: false */ - module.exports = { formatSelf: formatSelf, extractData: extractData @@ -70,7 +67,7 @@ function fontColor (data) { color = 'var(--green)' } else if (data.type === 'string') { color = 'var(--teal)' - } else if (data.self == 0x0) { + } else if (data.self == 0x0) { // eslint-disable-line color = 'var(--gray)' } return 'color:' + color