-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
renovate.json
44 lines (44 loc) · 1.02 KB
/
renovate.json
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
{
"extends": ["apollo-open-source"],
"ignorePaths": ["**/integration-tests/**"],
"dependencyDashboard": true,
"pathRules": [
{
"paths": ["docs/package.json"],
"extends": ["apollo-docs"]
}
],
"packageRules": [
{
"groupName": "all @types",
"groupSlug": "all-types",
"matchPackagePatterns": ["@types/*"]
},
{
"groupName": "all devDependencies",
"groupSlug": "all-dev",
"matchPackagePatterns": ["*"],
"matchDepTypes": ["devDependencies"]
},
{
"groupName": "all dependencies - patch updates",
"groupSlug": "all-patch",
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["patch"]
}
],
"ignoreDeps": [
"typedoc",
"react-17",
"react-dom-17",
"@testing-library/react-12",
"@rollup/plugin-node-resolve",
"rollup",
"glob",
"prettier",
"eslint-plugin-react-compiler"
],
"reviewers": [],
"reviewersFromCodeOwners": false,
"ignoreReviewers": ["team:@apollographql/client-typescript"]
}