-
Notifications
You must be signed in to change notification settings - Fork 1
/
.renovaterc.json
88 lines (88 loc) · 2.76 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"extends": ["@lmc-eu", "@lmc-eu:scheduleEveryTwoWeeksBusinessHours", "group:allNonMajor", ":pinOnlyDevDependencies"],
"ignorePresets": [":ignoreModulesAndTests"],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/__tests__/**",
"**/test/**",
"**/tests/**",
"**/__fixtures__/**"
],
"prConcurrentLimit": 3,
"packageRules": [
{
"groupName": "monorepo:storybook",
"groupSlug": "monorepo-storybook",
"matchSourceUrlPrefixes": ["https://github.com/storybookjs/storybook"]
},
{
"groupName": "fixed typescript v4.7.4 in root",
"groupSlug": "fixed-typescript-in-root",
"matchPackageNames": ["typescript"],
"allowedVersions": "4.7.4",
"matchPaths": ["+(package.json)"]
},
{
"groupName": "monorepo:supernovaio non-major",
"groupSlug": "monorepo-supernovaio-non-major",
"matchPackagePatterns": ["^@supernovaio"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "eslint plugins and configs non-major",
"groupSlug": "eslint-plugins-configs-non-major",
"matchPackagePatterns": ["^eslint"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "compile tools non-major",
"groupSlug": "compile-tools-non-major",
"matchPackagePatterns": ["^@babel", "^@swc"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "types non-major",
"groupSlug": "types-non-major",
"matchPackagePatterns": ["^@types"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "monorepo:react non-major",
"groupSlug": "monorepo-react-non-major",
"matchPackagePatterns": ["^react"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "lint tools non-major",
"groupSlug": "lint-tools-non-major",
"matchPackagePatterns": ["^prettier", "^lint-staged", "^husky"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "stylelint non-major",
"groupSlug": "stylelint-non-major",
"matchPackagePatterns": ["^stylelint"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "build tools non-major",
"groupSlug": "build-tools-non-major",
"matchPackagePatterns": ["^rollup", "^vite", "^webpack", "`^@rollup"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "monorepo tools non-major",
"groupSlug": "monorepo-tools-non-major",
"matchPackagePatterns": ["^lerna", "^nx"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"groupName": "typescript non-major",
"groupSlug": "typescript-non-major",
"matchPackagePatterns": ["^typescript"],
"matchUpdateTypes": ["minor", "patch"]
}
]
}