From 3e84d13938024d52ff75a681fefc8f29eb3abb46 Mon Sep 17 00:00:00 2001 From: Jiahao Guo Date: Thu, 9 May 2024 13:37:26 +0800 Subject: [PATCH] feat: restrict ESLint version to v8 we are not able to upgrade to ESLint v9 for now. see: https://github.com/RightCapitalHQ/frontend-style-guide/issues/128 --- base-presets.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/base-presets.json b/base-presets.json index 8805fc2..c1bc718 100644 --- a/base-presets.json +++ b/base-presets.json @@ -6,6 +6,11 @@ "matchSourceUrls": [ "https://github.com/RightCapitalHQ/frontend-style-guide" ] + }, + { + "description": "Restrict ESLint to v8", + "matchPackageNames": ["eslint"], + "allowedVersions": "<9.0.0" } ] }