From 1a37506c9d58867d0a2ed169e1602a21a3696cfc Mon Sep 17 00:00:00 2001 From: ronload <91997734+ronload@users.noreply.github.com> Date: Fri, 24 Apr 2026 15:36:42 +0800 Subject: [PATCH] ci(dependabot): ignore eslint major upgrades eslint-plugin-react (pulled in transitively via eslint-config-next) does not yet support ESLint 10.x, which caused the grouped dev-deps upgrade PR to fail lint with: TypeError: Error while loading rule 'react/display-name': contextOrFilename.getFilename is not a function Pin dependabot to patch/minor bumps on eslint until the upstream plugin catches up, so the rest of the dev-dependencies group can keep landing. --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index afc0c60..27c1fc2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,12 @@ updates: directory: / schedule: interval: weekly + ignore: + # eslint-plugin-react (transitive via eslint-config-next) is not yet + # compatible with ESLint 10. Revisit once upstream ships a fix. + - dependency-name: eslint + update-types: + - version-update:semver-major groups: dev-dependencies: dependency-type: development