From a9d14388b4a819d9b607d85c115000e421e46eec Mon Sep 17 00:00:00 2001 From: Daz DeBoer Date: Sat, 1 Aug 2026 20:55:01 -0600 Subject: [PATCH] Add dependabot ignore rules for TypeScript 7.x and @types/node 25.x/26.x Previously handled via `@dependabot ignore` issue comments, which don't provide enough control. Declaring the rules in the config makes them explicit and reviewable. Co-Authored-By: Claude Opus 5 (1M context) --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1c9a4b8b..3af159ea 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,11 @@ updates: npm-dependencies: patterns: - "*" + ignore: + - dependency-name: "typescript" + versions: ["7.x"] + - dependency-name: "@types/node" + versions: ["25.x", "26.x"] - package-ecosystem: "github-actions" # github-actions with directory: "/" only monitors .github/workflows # https://github.com/dependabot/dependabot-core/issues/6345