Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.

Commit 0f42f3b

Browse files
committed
chore: add renovate config
1 parent cab1c79 commit 0f42f3b

File tree

5 files changed

+81
-64
lines changed

5 files changed

+81
-64
lines changed

packages/eslint-config-tslint-base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/ChiefORZ/tslint-config"
1212
},
13-
"license": "UNLICENSED",
13+
"license": "MIT",
1414
"author": "ChiefORZ <[email protected]>",
1515
"main": "lib/tslint-config.js",
1616
"directories": {

packages/eslint-config-tslint-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/ChiefORZ/tslint-config-react"
1212
},
13-
"license": "UNLICENSED",
13+
"license": "MIT",
1414
"author": "ChiefORZ <[email protected]>",
1515
"main": "lib/tslint-config-react.js",
1616
"directories": {

packages/prettier-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/ChiefORZ/code-styles"
1212
},
13-
"license": "UNLICENSED",
13+
"license": "MIT",
1414
"author": "ChiefORZ <[email protected]>",
1515
"main": "lib/prettier-config.js",
1616
"directories": {
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"name": "@chieforz/renovate-config",
3+
"version": "1.1.2",
4+
"keywords": [
5+
"renovate",
6+
"renovate-config"
7+
],
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/ChiefORZ/code-styles"
11+
},
12+
"license": "MIT",
13+
"author": "ChiefORZ <[email protected]>",
14+
"publishConfig": {
15+
"access": "public",
16+
"registry": "https://registry.npmjs.org/"
17+
},
18+
"renovate-config": {
19+
"default": {
20+
"assignAutomerge": false,
21+
"assignees": [
22+
"ChiefORZ"
23+
],
24+
"extends": [
25+
"config:base",
26+
":prNotPending",
27+
":rebaseStalePrs",
28+
":updateNotScheduled",
29+
":prHourlyLimitNone",
30+
":automergeMinor",
31+
"group:allNonMajor",
32+
"schedule:automergeEarlyMondays"
33+
],
34+
"packageRules": [
35+
{
36+
"groupName": "internal",
37+
"matchPackagePatterns": [
38+
"^@chieforz/"
39+
]
40+
},
41+
{
42+
"matchDepTypes": [
43+
"dependencies"
44+
],
45+
"rangeStrategy": "bump"
46+
},
47+
{
48+
"groupName": "devDependencies (non-major)",
49+
"matchDepTypes": [
50+
"devDependencies"
51+
],
52+
"matchUpdateTypes": [
53+
"patch",
54+
"minor"
55+
]
56+
}
57+
],
58+
"platformAutomerge": true,
59+
"semanticCommits": "enabled"
60+
}
61+
}
62+
}

0 commit comments

Comments
 (0)