-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(renovate): group all linter-related PRs together (#97)
This is a good idea, since ESLint upgrades do not usually work in a vacuum. What with the peer dependencies and all...
- Loading branch information
Showing
2 changed files
with
19 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
// see https://docs.renovatebot.com/presets-config/ | ||
extends: [ | ||
'config:base', | ||
// automatically rebase onto main branch | ||
':rebaseStalePrs', | ||
// groups all ESLint-related dependency upgrades into a single PR | ||
'group:linters' | ||
], | ||
packageRules: [ | ||
// only send upgrade for deps (from the npm registry) after they've been | ||
// published for 30 days | ||
{ | ||
matchDatasources: ['npm'], | ||
minimumReleaseAge: '30 days', | ||
}, | ||
], | ||
} |
This file was deleted.
Oops, something went wrong.