|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:best-practices", |
| 5 | + ":docker", |
| 6 | + ":maintainLockFilesWeekly", |
| 7 | + ":pinAllExceptPeerDependencies", |
| 8 | + "security:minimumReleaseAgeNpm", |
| 9 | + ":semanticCommitsDisabled" |
| 10 | + ], |
| 11 | + "packageRules": [ |
| 12 | + { |
| 13 | + "description": "require manual approval for new minor OR major versions of these packages", |
| 14 | + "matchPackageNames": [ |
| 15 | + "@types/react-native", |
| 16 | + "react-native", |
| 17 | + "metro-react-native-babel-preset", |
| 18 | + "@react-native/metro-config", |
| 19 | + "@react-native/eslint-config", |
| 20 | + "@types/react-test-renderer", |
| 21 | + "react-test-renderer", |
| 22 | + "@types/react", |
| 23 | + "react", |
| 24 | + "com.facebook.flipper:flipper", |
| 25 | + "com.facebook.flipper:flipper-fresco-plugin", |
| 26 | + "com.facebook.flipper:flipper-network-plugin" |
| 27 | + ], |
| 28 | + "matchUpdateTypes": ["minor", "major"], |
| 29 | + "dependencyDashboardApproval": true |
| 30 | + }, |
| 31 | + { |
| 32 | + "description": "require manual approval for new major versions of these packages", |
| 33 | + "matchPackageNames": ["react-markdown"], |
| 34 | + "matchUpdateTypes": ["major"], |
| 35 | + "dependencyDashboardApproval": true |
| 36 | + }, |
| 37 | + { |
| 38 | + "description": "stop widening peerDep ranges for custom modules", |
| 39 | + "matchFileNames": ["modules/**/package.json"], |
| 40 | + "matchDepTypes": ["peerDependencies"], |
| 41 | + "rangeStrategy": "bump" |
| 42 | + }, |
| 43 | + { |
| 44 | + "description": "group all redux packages together", |
| 45 | + "groupName": "redux", |
| 46 | + "matchPackageNames": ["@reduxjs/**", "react-redux"] |
| 47 | + } |
| 48 | + ], |
| 49 | + "prConcurrentLimit": 0 |
| 50 | +} |
0 commit comments