-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
63 lines (63 loc) · 1.96 KB
/
renovate.json5
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
{
extends: ['config:base'],
dependencyDashboard: false,
// https://renovatebot.com/docs/configuration-options/#commitbodytable
commitBodyTable: true,
// https://renovatebot.com/docs/configuration-options/#ignoredeps
ignoreDeps: [
'eslint-config-prettier',
'eslint-config-airbnb',
'eslint',
'eslint-config-airbnb-base',
],
// https://renovatebot.com/docs/configuration-options/#labels
labels: ['enhancement'],
// https://renovatebot.com/docs/configuration-options/#prcreation
prCreation: 'not-pending',
// Use shorter commit messages to account for long dependency names.
// https://docs.renovatebot.com/configuration-options/#commitmessagetopic
commitMessageTopic: '{{depName}}',
// https://renovatebot.com/docs/configuration-options/#prbodycolumns
prBodyColumns: ['Package', 'Update', 'Type', 'Change'],
// https://renovatebot.com/docs/configuration-options/#schedule
schedule: ['every weekend'],
// Limit the number of consecutive PRs
prHourlyLimit: 2,
// Silently merge updates without PRs
automergeType: 'branch',
// https://renovatebot.com/docs/configuration-options/#rebasestaleprs
rebaseStalePrs: true,
node: {
major: {
enabled: true,
},
// https://renovatebot.com/docs/node/#configuring-support-policy
supportPolicy: ['current'],
},
vulnerabilityAlerts: {
enabled: true,
},
packageRules: [
{ packageNames: ['prettier'], groupName: 'prettier', automerge: true },
{ packageNames: ['jest'], groupName: 'jest', automerge: true },
{
packagePatterns: ['typescript', '^@typescript-eslint/'],
groupName: 'typescript',
automerge: true,
},
{
packageNames: ['eslint-rule-documentation'],
groupName: 'eslint-rule-documentation',
automerge: true,
},
{
packagePatterns: ['^actions/', '^github/'],
groupName: 'actions',
automerge: true,
},
{
matchDepTypes: ['peerDependencies'],
enabled: false,
},
],
}