Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: ignore dependabot for peer dependencies #904

Merged
merged 1 commit into from
Oct 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@ updates:
# only upgrade prod deps (not devDeps)
- dependency-name: '*'
dependency-type: production
ignore:
# ignore eslint-config-react-app's peerDeps
- dependency-name: '@typescript-eslint/eslint-plugin'
- dependency-name: '@typescript-eslint/parser'
- dependency-name: 'babel-eslint'
- dependency-name: 'eslint-plugin-flowtype'
- dependency-name: 'eslint-plugin-import'
- dependency-name: 'eslint-plugin-jsx-a11y'
- dependency-name: 'eslint-plugin-react'
- dependency-name: 'eslint-plugin-react-hooks'
# ignore Jest's "peers" that should be upgraded simultaneously with Jest
- dependency-name: '@types/jest'
- dependency-name: 'jest-watch-typeahead'
- dependency-name: 'ts-jest'
# temporarily disable dep upgrade PRs for / as they're being updated
open-pull-requests-limit: 0

Expand Down