-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathrenovate.json
More file actions
33 lines (33 loc) · 850 Bytes
/
Copy pathrenovate.json
File metadata and controls
33 lines (33 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"dependencyDashboard": true,
"rangeStrategy": "bump",
"packageRules": [
{
"description": "Disable dependency updates by default.",
"matchPackageNames": [
"/.*/"
],
"enabled": false
},
{
"description": "Only propose stable Maven and Gradle releases.",
"matchDatasources": [
"maven"
],
"allowedVersions": "!/[-.](alpha|beta|rc|cr|milestone|eap|dev|snapshot|m[0-9]+|M[0-9]+)[-.0-9]*/"
},
{
"description": "Only propose Compose Multiplatform updates.",
"matchPackageNames": [
"org.jetbrains.compose",
"/^org\\.jetbrains\\.compose[.:]/"
],
"enabled": true,
"groupName": "Compose Multiplatform"
}
]
}