Skip to content

Commit

Permalink
Merge pull request #74 from wkillerud/renovate/configure
Browse files Browse the repository at this point in the history
chore: configure renovate
  • Loading branch information
wkillerud authored Nov 19, 2023
2 parents d8d5aff + 8ecb45b commit b4e1b58
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"schedule": ["on the first day of the month"],
"dependencyDashboard": false,
"ignoreDeps": ["scss-sassdoc-parser", "vscode-css-languageservice"],
"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
},
{
"groupName": "language client and server",
"matchDepTypes": ["dependencies"],
"matchPackagePatterns": ["vscode-language"],
"automerge": false
},
{
"groupName": "dependencies (non-major)",
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": false
}
],
"automergeType": "branch"
}

0 comments on commit b4e1b58

Please sign in to comment.