-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathrenovate.json
More file actions
53 lines (53 loc) · 1.48 KB
/
renovate.json
File metadata and controls
53 lines (53 loc) · 1.48 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"ignorePaths": ["benchmarks"],
"rebaseWhen": "never",
"vulnerabilityAlerts": {
"groupName": "security updates"
},
"packageRules": [
{
"description": "Group routine non-major dev-only updates to reduce PR noise.",
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "dev dependency updates"
},
{
"description": "Keep React ecosystem updates together.",
"matchPackageNames": [
"react",
"react-dom",
"@types/react",
"@types/react-dom",
"next",
"@next/*"
],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "react ecosystem updates"
},
{
"description": "Keep build, test, and release tooling together.",
"matchPackageNames": [
"@biomejs/**",
"@changesets/**",
"rollup",
"tsdown",
"@tsdown/**",
"tsx",
"turbo",
"typescript",
"vite",
"vitest"
],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "tooling updates"
},
{
"description": "Keep GitHub integration libraries together.",
"matchPackageNames": ["@actions/**", "@octokit/**"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "github integration updates"
}
]
}