diff --git a/.eslintrc.js b/.eslintrc.js index c79f4c436f..d5ad92f2a3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -13,7 +13,6 @@ const temporarilyDisabledRules = { '@typescript-eslint/no-var-requires': 'off', 'no-constant-condition': 'off', 'no-undef': 'off', - 'no-var': 'off', 'prefer-const': 'off' }; diff --git a/src/lib/globals.ts b/src/lib/globals.ts index 081aca22b4..3d1b9318d3 100644 --- a/src/lib/globals.ts +++ b/src/lib/globals.ts @@ -1,3 +1,4 @@ +/* eslint-disable no-var */ import { Buffer } from 'buffer'; import * as process from 'process'; import { TextDecoder, TextEncoder } from 'text-encoding';