Commit d749c578 authored by aniket-engg's avatar aniket-engg

remix-lib linting done

parent 2a98b377
{ {
"extends": "../../.eslintrc", "extends": "../../.eslintrc",
"rules": { "rules": {
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-this-alias": "off",
"standard/no-callback-literal": "off", "standard/no-callback-literal": "off",
"camelcase": "off", "no-unused-vars": "off",
"no-unused-vars": "off" "dot-notation": "off"
}, },
"env": { "env": {
"browser": true, "browser": true,
......
...@@ -163,6 +163,7 @@ export function buildCallPath (index, rootCall) { ...@@ -163,6 +163,7 @@ export function buildCallPath (index, rootCall) {
* @param {String} value - value to sha3 * @param {String} value - value to sha3
* @return {Object} - return sha3ied value * @return {Object} - return sha3ied value
*/ */
// eslint-disable-next-line camelcase
export function sha3_256 (value) { export function sha3_256 (value) {
if (typeof value === 'string' && value.indexOf('0x') !== 0) { if (typeof value === 'string' && value.indexOf('0x') !== 0) {
value = '0x' + value value = '0x' + value
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment