From 223ba491116f9bfb87c1b60a5f9ab59883892142 Mon Sep 17 00:00:00 2001 From: alxndrsn Date: Mon, 13 Apr 2026 09:53:53 +0000 Subject: [PATCH] eslint: update env to es2017 Per https://eslint.org/docs/v8.x/use/configure/language-options#specifying-environments, es2017 is the equivalent of `.parserOptions.ecmaVersion: 8`. --- .eslintrc.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 83668f2826..d8159c2217 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,16 +9,12 @@ "env": { "browser": true, + "es2017": true, "node": true }, "globals": { - "Map": "readonly", - "Set": "readonly", "Symbol": "readonly", - "Promise": "readonly", - "Uint8Array": "readonly", - "ArrayBuffer": "readonly", "FileReaderSync": "readonly", "emit": "readonly", "PouchDB": "readonly"