forked from splunk/addonfactory-ucc-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
94 lines (94 loc) · 2.08 KB
/
renovate.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
89
90
91
92
93
94
{
"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"
],
"matchPackagePrefixes": [
"importlib-metadata",
"pytest",
"pytest-cov",
"pytest-rerunfailures"
],
"matchUpdateTypes": [
"major"
],
"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",
"string-width",
"strip-ansi",
"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"],
"matchManagers": ["npm"],
"matchDepTypes": [ "engines" ],
"enabled": false
}
]
}