-
-
Notifications
You must be signed in to change notification settings - Fork 183
Expand file tree
/
Copy path.renovaterc
More file actions
37 lines (37 loc) · 785 Bytes
/
.renovaterc
File metadata and controls
37 lines (37 loc) · 785 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
34
35
36
37
{
"extends": ["config:js-app"],
"rangeStrategy": "bump",
"schedule": ["on the first day of the month"],
"prConcurrentLimit": 3,
"dependencyDashboard": true,
"automerge": true,
"automergeType": "branch",
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies",
"automerge": true
},
{
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
}
],
"ignoreDeps": [
"babel-eslint",
"babel-jest",
"babel-loader",
"electron-log",
"electron-debug",
"eslint",
"jest",
"shell-env",
"webpack",
"webpack-dev-server",
"electron",
"electron-is-dev",
"docker-compose",
"react-error-overlay",
"@ant-design/icons"
]
}