Merge pull request #269 from trails-cool/chore/dependabot-ignore-rules

chore: dependabot ignore rules for mismatched @types/* + expo-pinned react-native
This commit is contained in:
Ullrich Schäfer 2026-04-19 11:01:04 +02:00 committed by GitHub
commit 017a098fca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,18 @@ updates:
development: development:
dependency-type: "development" dependency-type: "development"
open-pull-requests-limit: 10 open-pull-requests-limit: 10
ignore:
# Keep @types/* aligned with the runtime major. Mismatched type
# packages (e.g. @types/jest 30 while jest is still 29) break
# typecheck without buying us anything.
- dependency-name: "@types/jest"
update-types: ["version-update:semver-major"]
- dependency-name: "@types/node"
update-types: ["version-update:semver-major"]
# react-native is pinned by the Expo SDK — upgrade it via an Expo
# SDK bump, not on its own. Community react-native-* libraries are
# intentionally NOT ignored here; they can be bumped independently.
- dependency-name: "react-native"
- package-ecosystem: "github-actions" - package-ecosystem: "github-actions"
directory: "/" directory: "/"