1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-23 22:04:49 +02:00
Files
revive/renovate.json
2025-11-08 09:13:46 -08:00

28 lines
613 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"matchManagers": ["gomod"],
"matchFileNames": ["go.mod"],
"matchDepTypes": ["indirect"],
"groupName": "gomod",
"extends": ["schedule:weekly"],
"enabled": true
},
{
"matchManagers": ["gomod"],
"matchFileNames": ["tools/go.mod"],
"matchDepTypes": ["indirect"],
"groupName": "tools gomod",
"extends": ["schedule:monthly"],
"enabled": true
}
],
"postUpdateOptions": [
"gomodTidy"
]
}