From 83e7afeb6b379bfc3d6f602c4915f2c2b5ff0835 Mon Sep 17 00:00:00 2001 From: LongYinan Date: Thu, 1 Feb 2024 10:58:09 +0000 Subject: [PATCH] chore: exclude oxlint from non-major dependencies group (#5775) --- .github/renovate.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 57b0cea536..90d44ba89f 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -46,6 +46,11 @@ "rangeStrategy": "replace", "groupName": "electron-forge" }, + { + "matchPackageNames": ["oxlint"], + "rangeStrategy": "replace", + "groupName": "oxlint" + }, { "groupName": "blocksuite-canary", "matchPackagePatterns": ["^@blocksuite"], @@ -57,7 +62,7 @@ "groupName": "all non-major dependencies", "groupSlug": "all-minor-patch", "matchPackagePatterns": ["*"], - "excludePackagePatterns": ["^@blocksuite/"], + "excludePackagePatterns": ["^@blocksuite/", "oxlint"], "matchUpdateTypes": ["minor", "patch"] }, {