update for new linter rules

pull/373/head
Iuri Matias 4 years ago committed by Aniket
parent 220f7e7a4e
commit a114934845
  1. 3
      libs/remix-debug/.eslintrc
  2. 1
      libs/remix-debug/src/debugger/VmDebugger.js

@ -2,7 +2,8 @@
"extends": "../../.eslintrc",
"rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unused-vars": "off"
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-this-alias": "off"
},
"env": {
"browser": true,

@ -111,6 +111,7 @@ class VmDebuggerLogic {
}
})
} catch (error) {
console.log(error)
}
this._traceManager.getCurrentStep(index, (error, step) => {

Loading…
Cancel
Save