Skip to content

Commit 81e6968

Browse files
authored
Revert "Switch to JSON5, add some initial comments (#8)"
This reverts commit 26eec6c.
1 parent 26eec6c commit 81e6968

File tree

3 files changed

+69
-84
lines changed

3 files changed

+69
-84
lines changed

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
-w /workspace \
2525
ghcr.io/renovatebot/renovate:latest \
2626
renovate-config-validator \
27-
default.json5
27+
default.json

default.json

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"dependencyDashboard": true,
4+
"extends": [
5+
"config:best-practices",
6+
"helpers:pinGitHubActionDigestsToSemver"
7+
],
8+
"rangeStrategy": "auto",
9+
"cargo": {
10+
"rangeStrategy": "update-lockfile"
11+
},
12+
"minimumReleaseAge": "7 days",
13+
"internalChecksFilter": "strict",
14+
"prCreation": "immediate",
15+
"prHourlyLimit": 10,
16+
"prConcurrentLimit": 5,
17+
"semanticCommits": "disabled",
18+
"addLabels": [
19+
"internal"
20+
],
21+
"separateMajorMinor": false,
22+
"suppressNotifications": [
23+
"prEditedNotification"
24+
],
25+
"lockFileMaintenance": {
26+
"enabled": false,
27+
"schedule": [
28+
"before 4am on monday"
29+
]
30+
},
31+
"packageRules": [
32+
{
33+
"description": "Group lockfile updates by manager",
34+
"matchUpdateTypes": [
35+
"lockFileMaintenance"
36+
],
37+
"groupName": "{{manager}} lockfile updates",
38+
"commitMessageSuffix": "for {{manager}}"
39+
},
40+
{
41+
"description": "Disable minimum release age checks for our own Python packages",
42+
"matchDatasources": [
43+
"pypi"
44+
],
45+
"matchPackageNames": [
46+
"ruff",
47+
"uv",
48+
"ty"
49+
],
50+
"minimumReleaseAge": null
51+
},
52+
{
53+
"description": "Disable minimum release age checks for our own pre-commit hooks",
54+
"matchManagers": [
55+
"pre-commit"
56+
],
57+
"matchPackageNames": [
58+
"astral-sh/ruff-pre-commit",
59+
"astral-sh/uv-pre-commit",
60+
"astral-sh/ty-pre-commit"
61+
]
62+
}
63+
],
64+
"vulnerabilityAlerts": {
65+
"enabled": true,
66+
"vulnerabilityFixStrategy": "lowest"
67+
}
68+
}

default.json5

Lines changed: 0 additions & 83 deletions
This file was deleted.

0 commit comments

Comments
 (0)