-
Notifications
You must be signed in to change notification settings - Fork 43
/
renovate.json
47 lines (47 loc) · 1.07 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
{
"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
},
"separateMajorMinor": true,
"packageRules": [
{
"groupName": "Nuxt Dependencies",
"groupSlug": "template-deps",
"matchPackageNames": [
"@matterlabs/docs-nuxt-template",
"@iconify-json/**",
"/@*(nuxt)(js)*/",
"vue-easy-lightbox",
"rehype-katex",
"remark-math",
"@tsparticles/**",
"@vite-pwa/nuxt"
]
},
{
"groupName": "Tooling Dependencies",
"groupSlug": "tooling-deps",
"matchPackageNames": [
"@types/bun",
"eslint",
"@commitlint/**",
"cspell",
"husky",
"lint-staged",
"semantic-release",
"markdownlint**",
"prettier**",
"typescript",
"vue-tsc"
]
}
]
}