mirror of
https://github.com/yanhao98/renovate-example.git
synced 2025-07-13 21:10:49 +08:00
29 lines
654 B
Plaintext
29 lines
654 B
Plaintext
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"https://git.1-h.cc/examples/renovate-example/raw/branch/main/default.json5",
|
|
// "schedule:weekly",
|
|
// ":disablePeerDependencies",
|
|
// ":disableMajorUpdates",
|
|
// ":automergeAll",
|
|
// ":automergeMinor",
|
|
// "docker:pinDigests",
|
|
],
|
|
"dependencyDashboard": true,
|
|
"packageRules": [
|
|
{
|
|
"groupName": "types",
|
|
"packagePatterns": [
|
|
"^@types/"
|
|
],
|
|
"groupSlug": "types"
|
|
},
|
|
// manually update peer dependencies
|
|
{
|
|
"depTypeList": [
|
|
"peerDependencies"
|
|
],
|
|
"enabled": false
|
|
}
|
|
]
|
|
} |