From eb05bac07de575636181cea2b39036f9eb8e5640 Mon Sep 17 00:00:00 2001 From: David Anson Date: Fri, 30 Sep 2022 04:14:35 +0000 Subject: [PATCH] Disable new ESLint rule logical-assignment-operators from previous commit because "||=" syntax is not supported by Node 14. --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index b171cdab..5bed8063 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -71,6 +71,7 @@ "id-length": "off", "indent": ["error", 2, { "SwitchCase": 1 }], "linebreak-style": "off", + "logical-assignment-operators": "off", "max-depth": "off", "max-lines": "off", "max-lines-per-function": "off",