Replace deprecated Renovate config options.

This was an automatically requested migration that the
`renovate-config-validator` asked for. It's hard to tell because the
config options it asked to be removed are no longer in their docs, but
I believe this will not change the behavior of the renovate bot at all.
This commit is contained in:
itsjohncs 2022-01-29 17:31:37 -08:00
parent dcce9eba25
commit 7e0afc90fd

View file

@ -2,16 +2,14 @@
"extends": ["config:base"], "extends": ["config:base"],
"ignorePaths": ["test/"], "ignorePaths": ["test/"],
"labels": ["Type: Dependencies"], "labels": ["Type: Dependencies"],
"rebaseStalePrs": true,
"statusCheckVerify": true,
"stabilityDays": 1, "stabilityDays": 1,
"vulnerabilityAlerts": { "vulnerabilityAlerts": {
"labels": ["Type: Security"] "labels": ["Type: Security"]
}, },
"packageRules": [ "packageRules": [
{ {
"depTypeList": ["dependencies", "devDependencies"], "extends": ["schedule:monthly"],
"extends": ["schedule:monthly"] "matchDepTypes": ["dependencies", "devDependencies"]
} }
] ]
} }