From 93e7e6c9f3ebedf68cce9fad00afe4ca9299b791 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 6 Dec 2022 14:29:28 -0600 Subject: [PATCH] lint --- .eslintrc.js | 1 + tests/setup.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/.eslintrc.js b/.eslintrc.js index 8a72f7c429..0e6e1fa34b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -70,6 +70,7 @@ module.exports = { 'no-negated-condition': 'off', 'no-new': 'off', 'no-param-reassign': 'off', + 'node/prefer-global/text-decoder': 'off', radix: 'off', 'require-atomic-updates': 'off', 'jsdoc/match-description': [ diff --git a/tests/setup.ts b/tests/setup.ts index 827611e890..3ae380be5e 100644 --- a/tests/setup.ts +++ b/tests/setup.ts @@ -1,4 +1,5 @@ import 'isomorphic-fetch'; +// eslint-disable-next-line import { TextDecoder } from 'util'; // not sure why this is a type mismatch and has to be type cast to any...?