-
Notifications
You must be signed in to change notification settings - Fork 5
/
.renovaterc.json
51 lines (51 loc) · 1.09 KB
/
.renovaterc.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"extends": ["config:base"],
"enabled": true,
"prHourlyLimit": 0,
"ignoreDeps": [
"floating-vue",
"nuxt",
"sass-loader"
],
"packageRules": [
{
"matchManagers": ["npm","maven"],
"updateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"matchManagers": ["npm"],
"updateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"depTypeList": ["devDependencies"],
"automerge": true
},
{
"packagePatterns": ["eslint"],
"groupName": "eslint"
},
{
"matchSourceUrlPrefixes": [
"https://github.com/nuxt/nuxt.js"],
"groupName": "nuxtjs monorepo",
"automerge": true
},
{
"matchSourceUrlPrefixes": [
"https://github.com/vuejs/vue"],
"groupName": "vue monorepo",
"automerge": true
},
{
"matchSourceUrlPrefixes": [
"https://github.com/junit-team/junit5"
],
"groupName": "junit5 monorepo",
"automerge": true
}
],
"separateMajorMinor": true,
"separateMinorPatch": true
}