From e320c87c637adca486f2237630d459753449fa0b Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 31 Jan 2024 14:33:39 -0500 Subject: [PATCH] Ignore linting errors for hex table --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 7c00394..b0b5129 100644 --- a/index.js +++ b/index.js @@ -2123,6 +2123,7 @@ const hexSliceLookupTable = (function () { })() // hex lookup table for Buffer.from(x, 'hex') +/* eslint-disable no-multi-spaces, indent */ const hexCharValueTable = [ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2141,6 +2142,7 @@ const hexCharValueTable = [ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 ] +/* eslint-enable no-multi-spaces, indent */ // Return not function with Error if BigInt not supported function defineBigIntMethod (fn) {