-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathrenovate.json
More file actions
132 lines (132 loc) · 3.18 KB
/
renovate.json
File metadata and controls
132 lines (132 loc) · 3.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"extends": [
"config:base",
":semanticCommitTypeAll(chore)",
":disableDependencyDashboard"
],
"lockFileMaintenance": {
"enabled": true,
"extends": [
"schedule:weekends"
]
},
"schedule": [
"every 2 weeks on Sunday"
],
"packageRules": [
{
"description": "Separate npm and poetry dependencies",
"matchPackagePatterns": ["*"],
"groupName": "{{manager}}"
},
{
"description": "Ignore python packages that cannot be updated thanks to 3.7 support",
"matchManagers": [
"poetry"
],
"matchPackageNames": [
"importlib-metadata",
"pytest",
"pytest-cov",
"pytest-rerunfailures"
],
"matchUpdateTypes": [
"major"
],
"enabled": false
},
{
"description": "Ignore Python version updates in pyproject.toml",
"matchManagers": ["poetry"],
"matchDepNames": ["python"],
"enabled": false
},
{
"description": "Ignore mkdocs and its plugins that drop Python 3.7 support",
"matchPackageNames": [
"/^mkdocs"
],
"matchUpdateTypes": [
"major",
"minor"
],
"enabled": false
},
{
"matchPackageNames": ["urllib3"],
"allowedVersions": "<2.0.0"
},
{
"description": "Ignore packages that needs for SUI",
"matchManagers": [
"npm"
],
"matchPackageNames": [
"@npmcli/git",
"@testing-library/dom",
"@testing-library/react",
"@types/react",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"babel-eslint",
"babel-loader",
"css-what",
"eslint",
"eslint-config-airbnb",
"eslint-config-prettier",
"eslint-plugin-prettier",
"eslint-plugin-react-hooks",
"glob-parent",
"prettier",
"react",
"react-dom",
"react-is",
"react-router-dom",
"string-width",
"strip-ansi",
"styled-components",
"@types/styled-components",
"stylelint",
"undici"
],
"matchUpdateTypes": [
"major",
"replacement"
],
"enabled": false
},
{
"description": "Update package.json versions together with yarn.lock",
"matchManagers": [
"npm"
],
"rangeStrategy": "bump"
},
{
"description": "Ignore NodeJS",
"matchPackageNames": ["node", "@types/node"],
"matchManagers": ["npm"],
"matchDepTypes": [ "engines", "devDependencies" ],
"enabled": false
},
{
"description": "Ignore updates for ubuntu in GitHub (ref #1374)",
"matchPackageNames": ["ubuntu"],
"matchManagers": ["github-actions"],
"enabled": false
},
{
"description": "Ignore updates for Python in GitHub Actions",
"matchPackageNames": ["python"],
"matchManagers": ["github-actions"],
"enabled": false
},
{
"description": "react-router-dom throws not-dismissible warnings",
"matchPackageNames": ["react-router-dom"],
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor"],
"enabled": false
}
]
}