-
Notifications
You must be signed in to change notification settings - Fork 6
/
default.json
47 lines (47 loc) · 1.26 KB
/
default.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": [
":timezone(Asia/Tokyo)",
"group:monorepos",
"packages:stylelint",
":widenPeerDependencies",
":label(renovate)",
":semanticCommitScopeDisabled"
],
"schedule": "after 8am and before 5pm every weekday",
"npm": {
"extends": [
":noUnscheduledUpdates",
"npm:unpublishSafe",
"helpers:disableTypesNodeMajor"
],
"rangeStrategy": "bump",
"semanticCommitType": "chore",
"separateMinorPatch": true,
"packageRules": [
{
"matchDepTypes": [
"devDependencies"
],
"matchUpdateTypes": [
"patch"
],
"automerge": true
},
{
"matchPackageNames": ["eslint"],
"enabled": false,
"description": "ESLint v9 は各種プラグインが対応してからバージョンアップの対象にする"
},
{
"matchPackageNames": ["cimg/node"],
"matchUpdateTypes": ["major"],
"enabled": false,
"description": "cimg/node は CI 上で Node のバージョンを固定した上でテストをしたいパターンがあるので、メジャーバージョンの更新はしない"
},
{
"packageNames": ["ua-parser-js"],
"allowedVersions": "<2.0.0"
}
]
}
}