-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
37 lines (37 loc) · 912 Bytes
/
renovate.json
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
34
35
36
37
{
"extends": ["group:monorepos", "group:recommended"],
"packageRules": [
{
"matchPackagePatterns": ["*"],
"rangeStrategy": "pin"
},
{
"matchDepTypes": ["engines"],
"rangeStrategy": "auto"
},
{
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies",
"groupSlug": "all-minor-patch"
},
{
"matchPackageNames": ["@floating-ui/dom"],
"rangeStrategy": "auto"
}
],
"dependencyDashboard": true,
"semanticCommits": "enabled",
"semanticPrefix": "chore",
"prHourlyLimit": 2,
"prConcurrentLimit": 10,
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 5am on the 15th day of the month"]
},
"timezone": "Europe/Berlin",
"schedule": ["before 5am on the first day of the month"],
"vulnerabilityAlerts": {
"enabled": false
}
}