forked from pa11y/pa11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
36 lines (36 loc) · 1017 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":disableRateLimiting"
],
"ignorePresets": [":dependencyDashboard"],
"labels": ["dependencies"],
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 8:00pm on the first day of the month"]
},
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"description": "Group minor/patch npm devDependencies into a single MR",
"matchDepTypes": ["devDependencies"],
"matchManagers": ["npm"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "devDependencies (non-major)"
},
{
"description": "Ignore Node engines, will update manually if required",
"matchDepTypes": ["engines"],
"matchManagers": ["npm"],
"enabled": false
},
{
"description": "Set range strategy for npm dependencies",
"matchManagers": ["npm"],
"rangeStrategy": "bump"
}
],
"rebaseWhen": "behind-base-branch",
"timezone": "America/Chicago"
}