-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrenovate.json
More file actions
64 lines (64 loc) · 2.03 KB
/
renovate.json
File metadata and controls
64 lines (64 loc) · 2.03 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>SonarSource/renovate-config:frontend-engineering-squad"],
"packageRules": [
{
"description": "Group all storybook related dependencies in the same PR",
"matchPackageNames": ["storybook", "@storybook/**"],
"groupName": "storybook dependencies",
"groupSlug": "storybook"
},
{
"description": "Group all design tokens dependencies in the same PR",
"matchPackageNames": ["@tokens-studio/sd-transforms", "style-dictionary"],
"groupName": "design-tokens dependencies",
"groupSlug": "design-tokens"
},
{
"description": "Group all fonts related dependencies in the same PR",
"matchPackageNames": [
"@yarnpkg/fslib",
"@yarnpkg/libzip",
"subset-font",
"@material-symbols/font-400"
],
"groupName": "fonts dependencies",
"groupSlug": "fonts"
},
{
"description": "Don't automatically update major versions of our peer dependencies",
"matchPackageNames": [
"@emotion/react",
"@emotion/styled",
"react",
"@types/react",
"react-dom",
"@types/react-dom",
"react-intl",
"react-router-dom"
],
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "ECHOES-761 Mantine next major version has breaking changes.",
"matchPackageNames": ["@mantine/**"],
"matchUpdateTypes": ["patch", "minor", "major"],
"groupName": null,
"groupSlug": null,
"dependencyDashboardApproval": true
},
{
"description": "SC-23705 Eslint major update need configuration rework.",
"extends": ["packages:eslint"],
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "React-intl minor patch version upgrade to 6.7.3 has broken types",
"matchPackageNames": ["react-intl"],
"dependencyDashboardApproval": true
}
],
"ignoreDeps": []
}