Skip to content

Commit

Permalink
fix: enable some rules
Browse files Browse the repository at this point in the history
  • Loading branch information
MH4GF committed Mar 3, 2024
1 parent 444bd3d commit 5a2e23a
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion renovate.json5
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
"config:recommended", // https://docs.renovatebot.com/presets-config/#configrecommended
":pinAllExceptPeerDependencies", // https://docs.renovatebot.com/presets-default/#pinonlydevdependencies
"helpers:pinGitHubActionDigests", // https://docs.renovatebot.com/upgrade-best-practices/#extends-helperspingithubactiondigests
"schedule:monthly" // https://docs.renovatebot.com/presets-schedule/#schedulemonthly
],
"packageRules": [
{
"groupName": "all devDependencies",
"excludePackageNames": ["dependency-cruiser", "tj-actions/changed-files", "actions/checkout"],
"matchDepTypes": ["devDependencies", "packageManager", "github-actions"],
"automerge": true
},
{
"groupName": "all dependencies",
"matchDepTypes": ["dependencies", "engines"]
},
{
"groupName": "all dependencies (github-actions)",
"matchPackageNames": ["tj-actions/changed-files", "actions/checkout"]
}
]
}

0 comments on commit 5a2e23a

Please sign in to comment.