From 7afa0694dac2e455828cb12e863489ddc0783e4c Mon Sep 17 00:00:00 2001 From: moisseev Date: Sat, 18 Dec 2021 22:22:24 +0300 Subject: [PATCH] [Test] Disable prefer-object-has-own ESLint rule MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit as Object.hasOwn(…) is not implemented in Pale Moon. --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 2dc3ebc51..ff514b13c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -47,6 +47,7 @@ "padded-blocks": "off", "prefer-arrow-callback": "off", "prefer-destructuring": "off", + "prefer-object-has-own": "off", "prefer-spread": "off", "prefer-template": "off", "quote-props" : ["error", "consistent-as-needed"], -- 2.39.5