-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecommended.json
More file actions
48 lines (48 loc) · 1.31 KB
/
recommended.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"allowedCommands": [
"npm install",
"npx expo install --fix",
"npm run format --if-present"
],
"description": "Recommended configuration",
"extends": [
"github>Captive-Studio/renovate-config:base",
"github>Captive-Studio/renovate-config//preset/groupRecommended",
"github>Captive-Studio/renovate-config//preset/automergeRecommended",
":separateMultipleMajorReleases",
":separateMultipleMinorReleases",
":pinAllExceptPeerDependencies"
],
"packageRules": [
{
"description": "Expo-doctor: conserver des ranges (^) pour certaines deps attendues par le SDK Expo",
"matchManagers": ["npm"],
"matchPackageNames": [
"@react-navigation/bottom-tabs",
"@react-navigation/native"
],
"rangeStrategy": "bump"
},
{
"matchCategories": ["node", "ruby", "postgres"],
"matchDepTypes": ["minor", "patch"],
"automerge": true
},
{
"matchManagers": ["docker"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchManagers": ["asdf"],
"matchDepTypes": ["minor", "patch"],
"automerge": true
},
{
"matchManagers": ["npm"],
"matchDepTypes": ["patch"],
"automerge": true
}
]
}