-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
77 lines (76 loc) · 2.12 KB
/
renovate.json
File metadata and controls
77 lines (76 loc) · 2.12 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
{
"$schema": "https://json.schemastore.org/renovate.json",
"extends": ["config:best-practices"],
"schedule": ["before 4:00am on Friday"],
"timezone": "Asia/Tokyo",
"prHourlyLimit": 0,
"automerge": false,
"rangeStrategy": "bump",
"branchConcurrentLimit": 0,
"gitIgnoredAuthors": ["185786754+robo-miku[bot]@users.noreply.github.com"],
"enabledManagers": ["github-actions", "npm"],
"labels": ["renovate"],
"packageRules": [
{
"groupName": "GitHub Actions",
"matchDatasources": ["github-actions"]
},
{
"groupName": "devDependencies",
"matchDepTypes": ["devDependencies"],
"matchDatasources": ["npm"]
},
{
"groupName": "Disable peerDependencies",
"matchDepTypes": ["peerDependencies"],
"matchDatasources": ["npm"],
"enabled": false
},
{
"groupName": "pnpm catalog",
"matchDepTypes": ["pnpm.catalog.default"]
},
{
"groupName": "eslint",
"matchManagers": ["npm"],
"matchDepTypes": ["dependencies"],
"matchFileNames": ["packages/eslint-config/**"]
},
{
"groupName": "prettier",
"matchManagers": ["npm"],
"matchFileNames": ["packages/prettier-config/**"],
"matchDepTypes": ["dependencies"]
},
{
"groupName": "stylelint",
"matchManagers": ["npm"],
"matchFileNames": ["packages/stylelint-config/**"],
"matchDepTypes": ["dependencies"]
},
{
"groupName": "eslint-patch",
"matchManagers": ["npm"],
"matchDepTypes": ["dependencies"],
"matchFileNames": ["packages/eslint-config/**"],
"matchUpdateTypes": ["patch"],
"automerge": true
},
{
"groupName": "prettier-patch",
"matchManagers": ["npm"],
"matchFileNames": ["packages/prettier-config/**"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch"],
"automerge": true
},
{
"groupName": "stylelint-patch",
"matchManagers": ["npm"],
"matchFileNames": ["packages/stylelint-config/**"],
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["patch"],
"automerge": true
}
]
}