From a6efbad1c15af29f673d6292a1f0e84b46981e49 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Fri, 11 Feb 2022 16:39:44 -0800 Subject: [PATCH] [Fix] pin `eslint` to < `v8.9`, since it breaks ES3 strict mode parsing See https://github.com/eslint/eslint/pull/15595 / https://github.com/eslint/eslint-scope/pull/87 / https://github.com/eslint/eslint-scope/issues/86 / https://github.com/eslint/eslint/issues/15456 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index a80ca38..0123178 100644 --- a/package.json +++ b/package.json @@ -31,14 +31,14 @@ "aud": "^2.0.0", "auto-changelog": "^2.4.0", "eclint": "^2.8.1", - "eslint": "^8.8.0", + "eslint": "^8.8.0 <8.9", "eslint-find-rules": "^4.1.0", "in-publish": "^2.0.1", "safe-publish-latest": "^2.0.0", "tape": "^5.5.0" }, "peerDependencies": { - "eslint": "^8.8.0" + "eslint": "^8.8.0 <8.9" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0"