From 2f92177bf73d964a73e6005438ef2b442b502706 Mon Sep 17 00:00:00 2001 From: Jiahao Guo Date: Fri, 26 Jul 2024 13:25:34 +0800 Subject: [PATCH] feat: restrict ``@types/eslint` version to v8 Currently, we are restricting eslint to v8, the corresponding @types/eslint package should also be restricted to avoid type mismatches. see: https://github.com/RightCapitalHQ/renovate-config/pull/71 --- base-presets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-presets.json b/base-presets.json index c1bc718..eac4c47 100644 --- a/base-presets.json +++ b/base-presets.json @@ -9,7 +9,7 @@ }, { "description": "Restrict ESLint to v8", - "matchPackageNames": ["eslint"], + "matchPackageNames": ["eslint", "@types/eslint"], "allowedVersions": "<9.0.0" } ]