-
Notifications
You must be signed in to change notification settings - Fork 14
/
renovate.json
55 lines (55 loc) · 1.27 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
{
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)", "group:allNonMajor"],
"timezone": "Europe/London",
"schedule": ["before 5am on monday"],
"semanticCommits": "enabled",
"npm": {
"minimumReleaseAge": "1 week"
},
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"groupName": "Nuxt Dependencies",
"groupSlug": "template-deps",
"matchPackageNames": [
"@matterlabs/docs-nuxt-template",
"@iconify-json/**",
"/@*(nuxt)(js)*/",
"vue-easy-lightbox",
"rehype-katex",
"remark-math",
"@vite-pwa/nuxt",
"dayjs"
]
},
{
"groupName": "web3",
"groupSlug": "web3-deps",
"matchPackageNames": ["/openzeppelin/", "/zksync/", "/hardhat/"]
},
{
"groupName": "Tooling Dependencies",
"groupSlug": "tooling-deps",
"matchPackageNames": [
"@playwright/test",
"eslint",
"@commitlint/**",
"cspell",
"husky",
"lint-staged",
"semantic-release",
"markdownlint**",
"prettier**",
"typescript",
"vue-tsc",
"@playwright/test",
"@vue/test-utils",
"node-pty",
"pm2"
]
}
]
}