forked from nusmodifications/nusmods
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
90 lines (90 loc) · 2.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"extends": [
"config:base",
"schedule:weekends",
"group:babelMonorepo",
":automergePr",
":automergeRequireAllStatusChecks",
":automergeMinor",
":prConcurrentLimit10",
":label(dependencies)",
":timezone(Asia/Singapore)"
],
"packageRules": [
{
"description": "Group lodash packages together",
"extends": "monorepo:lodash",
"packagePatterns": ["^@types/lodash"],
"groupName": "lodash"
},
{
"description": "Group Webpack-related packages together",
"packagePatterns": ["-loader$", "webpack"],
"excludePackagePatterns": ["react-hot-loader"],
"groupName": "webpack"
},
{
"description": "Group mapbox packages together",
"packagePatterns": ["^(leaflet|mapbox)"],
"groupName": "mapbox"
},
{
"description": "Group eslint packages together",
"packagePatterns": ["eslint"],
"excludePackageNames": ["eslint-loader"],
"groupName": "eslint"
},
{
"description": "Group stylelint packages together",
"packagePatterns": ["stylelint"],
"excludePackageNames": ["stylelint-webpack-plugin"],
"groupName": "stylelint"
},
{
"extends": "monorepo:jest",
"packagePatterns": ["(jest|enzyme|mock)"],
"packageNames": ["identity-obj-proxy"],
"groupName": "test"
},
{
"extends": "monorepo:react",
"packageNames": ["@types/react", "@types/react-dom"],
"groupName": "react"
},
{
"extends": "monorepo:reactrouter",
"packagePatterns": ["^@types/react-router"],
"groupName": "react-router"
},
{
"description": "Group state management packages together",
"packagePatterns": ["(redux|reselect|immer)"],
"excludePackagePatterns": ["redux-mock"],
"groupName": "state-management"
},
{
"description": "Group typescript typings together",
"packagePatterns": ["^@types/"],
"excludePackageNames": [
"@types/react",
"@types/react-dom",
"@types/react-router-dom",
"@types/react-redux",
"@types/react-leaflet",
"@types/redux",
"@types/lodash",
"@types/leaflet"
],
"groupName": "definitelyTyped"
}
],
"ignoreDeps": ["query-string", "@types/query-string", "@material/snackbar", "@material/fab"],
"pathRules": [
{
"paths": ["packages/**"],
"extends": ["config:js-lib"]
}
],
"ignorePaths": ["scrapers/nus", ".nvmrc"],
"prHourlyLimit": 0
}