-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
109 lines (109 loc) · 2.74 KB
/
Copy pathrenovate.json
File metadata and controls
109 lines (109 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base"],
"rangeStrategy": "bump",
"dependencyDashboard": true,
"enabledManagers": ["npm", "dockerfile"],
"baseBranches": ["main"],
"labels": ["dependencies"],
"prCreation": "immediate",
"branchConcurrentLimit": 50,
"prHourlyLimit": 2,
"rebaseWhen": "behind-base-branch",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["after 10pm every weekday"]
},
"packageRules": [
{
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"matchPackagePatterns": ["^@nx/"],
"groupName": "Nx monorepo packages",
"matchUpdateTypes": ["minor", "patch"]
},
{
"matchPackagePatterns": ["^@types/"],
"groupName": "TypeScript type definitions"
},
{
"matchPackageNames": [
"eslint",
"eslint-plugin-react",
"eslint-plugin-jsx-a11y",
"eslint-plugin-import",
"eslint-plugin-react-hooks",
"eslint-plugin-cypress",
"@eslint/js",
"eslint-config-prettier"
],
"groupName": "ESLint and linting tools"
},
{
"matchPackageNames": [
"jest",
"ts-jest",
"jest-environment-jsdom",
"jest-environment-node",
"@swc/jest"
],
"groupName": "Jest testing tools"
},
{
"matchPackageNames": ["vitest", "@vitest/ui"],
"groupName": "Vitest testing tools"
},
{
"matchPackageNames": ["supertest", "@types/supertest"],
"groupName": "Supertest tools"
},
{
"matchPackageNames": ["react", "react-dom", "react-is"],
"groupName": "React core packages"
},
{
"matchPackageNames": [
"styled-components",
"@types/styled-components",
"babel-plugin-styled-components"
],
"groupName": "Styled Components"
},
{
"matchPackageNames": ["vite", "@nx/vite", "@vitejs/plugin-react"],
"groupName": "Vite and plugins"
},
{
"matchPackageNames": [
"webpack-cli",
"@nx/webpack",
"@pmmmwh/react-refresh-webpack-plugin",
"@svgr/webpack"
],
"groupName": "Webpack and plugins"
},
{
"matchPackageNames": ["typescript", "ts-node", "tslib"],
"groupName": "TypeScript and tools"
},
{
"matchPackageNames": ["@tanstack/react-query"],
"groupName": "TanStack Query"
},
{
"matchPackageNames": ["express", "@types/express", "@nx/express"],
"groupName": "Express and related types"
},
{
"matchPackageNames": ["jsdom"],
"groupName": "jsdom"
},
{
"matchDatasources": ["docker"],
"matchPackageNames": ["node"],
"groupName": "Node Docker base image"
}
]
}