-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathrenovate.json
More file actions
108 lines (108 loc) · 3.25 KB
/
Copy pathrenovate.json
File metadata and controls
108 lines (108 loc) · 3.25 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Extend Grafana Renovate Self-Hosted Configuration Template",
"ignorePresets": [
"github>grafana/grafana-renovate-config//presets/automerge",
"github>grafana/grafana-renovate-config//presets/labels",
"github>grafana/grafana-renovate-config//presets/docker"
],
"extends": ["config:best-practices"],
"minimumReleaseAge": "14 days",
"prConcurrentLimit": 5,
"schedule": ["on the first day of the month"],
"rebaseWhen": "behind-base-branch",
"packageRules": [
{
"description": "Group all Grafana packages together",
"groupName": "Grafana packages",
"matchPackageNames": ["/^@grafana\\//"]
},
{
"description": "Group React and matching type packages",
"groupName": "React",
"matchPackageNames": ["react", "react-dom", "@types/react", "@types/react-dom"]
},
{
"description": "Group TypeScript ESLint packages",
"groupName": "typescript-eslint",
"matchPackageNames": ["/^@typescript-eslint//"]
},
{
"description": "Group Testing Library and Jest packages",
"groupName": "Testing Library",
"matchPackageNames": [
"@testing-library/dom",
"@testing-library/jest-dom",
"@testing-library/react",
"@testing-library/user-event",
"jest",
"jest-environment-jsdom",
"@types/jest"
]
},
{
"description": "Group Prettier",
"groupName": "Prettier",
"matchPackageNames": ["prettier"]
},
{
"description": "Group ESLint core and plugins (not eslint-webpack-plugin; see Webpack group)",
"groupName": "ESLint",
"matchPackageNames": [
"eslint",
"eslint-config-prettier",
"eslint-plugin-jsdoc",
"eslint-plugin-react",
"eslint-plugin-react-hooks",
"@stylistic/eslint-plugin-ts"
]
},
{
"description": "Group webpack, CLI, loaders, and webpack plugins",
"groupName": "Webpack",
"matchPackageNames": [
"webpack",
"webpack-cli",
"webpack-merge",
"copy-webpack-plugin",
"css-loader",
"style-loader",
"sass",
"sass-loader",
"imports-loader",
"terser-webpack-plugin",
"eslint-webpack-plugin",
"fork-ts-checker-webpack-plugin",
"replace-in-file-webpack-plugin",
"webpack-livereload-plugin",
"webpack-subresource-integrity",
"webpack-virtual-modules"
]
},
{
"description": "Group SWC toolchain",
"groupName": "SWC",
"matchPackageNames": ["@swc/core", "@swc/jest", "swc-loader"]
},
{
"description": "Group OpenFeature packages",
"groupName": "OpenFeature",
"matchPackageNames": ["/^@openfeature//"]
},
{
"description": "Group React Aria packages",
"groupName": "React Aria",
"matchPackageNames": ["/^@react-aria//"]
},
{
"description": "Group TypeScript compiler and Node tooling",
"groupName": "TypeScript",
"matchPackageNames": ["typescript", "ts-node", "@types/node"]
},
{
"description": "Group Lezer parser packages",
"groupName": "Lezer",
"matchPackageNames": ["/^@lezer//"]
}
]
}