-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
36 lines (36 loc) · 957 Bytes
/
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
{
extends: ['github>karlhorky/renovate-config:default.json5'],
packageRules: [
{
packagePatterns: ['*'],
enabled: false,
},
{
// Allow updating these packages, since they are
// not managed / restricted by Expo SDK version
// https://github.com/renovatebot/config-help/issues/86#issuecomment-415815759
packageNames: [
'@config-plugins/detox',
'@expo/xcpretty',
'@react-native-community/masked-view',
'@react-navigation/native',
'@react-navigation/native-stack',
'detox',
'eslint',
'eslint-config-upleveled',
// Jest is managed by Expo SDK version, but
// we want the latest version to keep tests stable
'jest',
'ts-jest',
'typescript',
],
enabled: true,
automerge: true,
},
{
matchManagers: ['github-actions'],
enabled: true,
automerge: true,
},
],
}