Configure Renovate to ignore ESLint 9 (#10946)

This commit is contained in:
Micha Reiser 2024-04-15 08:52:43 +02:00 committed by GitHub
parent cdbd754870
commit b62aeb39d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 7 additions and 0 deletions

View File

@ -52,6 +52,13 @@
matchPackagePatterns: ["strum"], matchPackagePatterns: ["strum"],
description: "Weekly update of strum dependencies", description: "Weekly update of strum dependencies",
}, },
{
groupName: "ESLint",
matchManagers: ["npm"],
matchPackageNames: ["eslint"],
allowedVersions: "<9",
description: "Constraint ESLint to version 8 until TypeScript-eslint supports ESLint 9", // https://github.com/typescript-eslint/typescript-eslint/issues/8211
},
], ],
vulnerabilityAlerts: { vulnerabilityAlerts: {
commitMessageSuffix: "", commitMessageSuffix: "",