disabled eqeqeq line

pull/5370/head
LianaHus 5 years ago
parent e9761f2a07
commit faf3afb4d0
  1. 5
      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

Loading…
Cancel
Save