-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjavascript.json
More file actions
70 lines (70 loc) · 2.43 KB
/
Copy pathjavascript.json
File metadata and controls
70 lines (70 loc) · 2.43 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>bettermarks/renovate-config:npm-base"],
"dependencyDashboardHeader": "Uses https://github.com/bettermarks/renovate-config#javascript \nPR that have automerge enabled [might be approved automatically](https://github.com/bettermarks/cloudflare-workers/tree/master/approve-dependency-pr-webhook#readme)",
"packageRules": [
{ "matchUpdateTypes": ["pin"], "prPriority": 10, "automerge": true },
{
"matchPackageNames": ["node", "@types/node"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{ "matchPackageNames": ["node"], "rangeStrategy": "replace" },
{
"description": "custom version of security:minimumReleaseAgeNpm since it overrides prImmediate which we do not want, see https://github.com/renovatebot/renovate/discussions/39242#discussioncomment-14987608 and https://docs.renovatebot.com/key-concepts/minimum-release-age/#minimum-release-age",
"matchDatasources": ["npm"],
"matchUpdateTypes": ["patch", "major", "minor"],
"minimumReleaseAge": "3 days",
"internalChecksFilter": "strict",
"prCreation": "immediate"
},
{
"matchDepTypes": [
"overrides",
"resolutions",
"pnpm.overrides",
"engines"
],
"rangeStrategy": "auto"
},
{
"matchPackageNames": ["/^@bettermarks/.*/", "/^bm-.*/"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"prPriority": 5,
"prHourlyLimit": 3,
"minimumReleaseAge": "0 days",
"automerge": true
},
{
"matchSourceUrls": ["https://github.com/bettermarks/eslint-configs"],
"groupName": "@bettermarks/eslint-configs"
},
{
"matchSourceUrls": ["https://github.com/Rel1cx/eslint-react"],
"groupName": "ESLint React"
},
{
"matchPackageNames": ["typescript"],
"separateMinorPatch": true,
"separateMultipleMinor": true,
"prPriority": 2
},
{
"matchManagers": ["npm"],
"matchPackageNames": ["@types/jest"],
"versioning": "jest"
},
{
"matchPackageNames": ["/^@types/.*/"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"minimumReleaseAge": null,
"prPriority": -5,
"automerge": true
},
{
"matchPackageNames": ["ua-parser-js"],
"description": "v2 changes the license from MIT to AGPL",
"allowedVersions": "<2"
}
]
}