Skip to content

Commit

Permalink
chore(renovate): group all linter-related PRs together (#97)
Browse files Browse the repository at this point in the history
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
boneskull authored Nov 6, 2023
1 parent 26270ed commit 190d1b9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
19 changes: 19 additions & 0 deletions .github/renovate.json5
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',
},
],
}
14 changes: 0 additions & 14 deletions renovate.json

This file was deleted.

0 comments on commit 190d1b9

Please sign in to comment.