Skip to content

Commit

Permalink
chore: configure renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
wkillerud committed Nov 19, 2023
1 parent 351b199 commit 1a2d8a7
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
"extends": ["config:recommended"],
"schedule": ["on the first day of the month"],
"dependencyDashboard": false,
"packageRules": [
{
"groupName": "linters",
"matchDepTypes": ["devDependencies"],
"matchPackagePatterns": ["lint", "prettier"],
"automerge": true
},
{
"groupName": "devDependencies (non-major)",
"excludePackagePatterns": ["lint", "prettier"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchPackagePatterns": ["vscode-css-languageservice"],
"automerge": false
},
{
"groupName": "dependencies (non-major)",
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": false
}
],
"automergeType": "branch"
}

0 comments on commit 1a2d8a7

Please sign in to comment.