-
Notifications
You must be signed in to change notification settings - Fork 6
/
renovate.json
30 lines (30 loc) · 939 Bytes
/
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>coveo/renovate-presets",
":semanticPrefixFixDepsChoreOthers",
"helpers:pinGitHubActionDigests",
"schedule:earlyMondays",
"github>coveo/renovate-presets//auto-merge.json"
],
"packageRules": [
{
"matchPackagePatterns": ["*"],
"groupName": "all dependencies",
"groupSlug": "all"
},
{
"matchPackageNames": ["query-string-cjs"],
"allowedVersions": "7.x",
"description": "8.x and above are ESM only. Remove this when we stop CJS support"
},
{
"matchPackageNames": ["eslint"],
"allowedVersions": "8.x",
"description": "all our plugins and deps are not compatible with 9.x yet"
}
],
"lockFileMaintenance": {
"enabled": true
}
}