style: reformat renovate.json with standard 2-space indent
Security / scan (push) Successful in 13s

This commit is contained in:
2026-05-09 12:34:47 +02:00
parent b81c50b433
commit cd01fa63a1
+81 -52
View File
@@ -1,54 +1,83 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"config:recommended", "config:recommended",
":dependencyDashboard", ":dependencyDashboard",
":semanticCommits", ":semanticCommits",
":timezone(Europe/Berlin)", ":timezone(Europe/Berlin)",
"schedule:weekly" "schedule:weekly"
], ],
"labels": ["dependencies", "renovate"], "labels": [
"assignees": ["JonKazama-Hellion"], "dependencies",
"prHourlyLimit": 10, "renovate"
"prConcurrentLimit": 20, ],
"rebaseWhen": "behind-base-branch", "assignees": [
"packageRules": [ "JonKazama-Hellion"
{ ],
"description": "Group all minor and patch updates per ecosystem in one PR", "prHourlyLimit": 10,
"matchUpdateTypes": ["minor", "patch"], "prConcurrentLimit": 20,
"groupName": "minor and patch updates ({{manager}})" "rebaseWhen": "behind-base-branch",
}, "packageRules": [
{ {
"description": "Major updates always get their own PR with breaking-change label", "description": "Group all minor and patch updates per ecosystem in one PR",
"matchUpdateTypes": ["major"], "matchUpdateTypes": [
"labels": ["dependencies", "major-update", "breaking-change"], "minor",
"addLabels": ["needs-review"] "patch"
}, ],
{ "groupName": "minor and patch updates ({{manager}})"
"description": "TypeScript type definitions stay grouped with each other",
"matchPackagePrefixes": ["@types/"],
"groupName": "type definitions"
},
{
"description": "Dev dependencies in their own group",
"matchDepTypes": ["devDependencies"],
"groupName": "dev dependencies"
},
{
"description": "Pin GitHub Action versions by SHA for supply-chain hygiene",
"matchManagers": ["github-actions"],
"pinDigests": true
}
],
"vulnerabilityAlerts": {
"labels": ["security", "vulnerability"],
"schedule": ["at any time"],
"prPriority": 10
}, },
"lockFileMaintenance": { {
"enabled": true, "description": "Major updates always get their own PR with breaking-change label",
"schedule": ["before 6am on monday"], "matchUpdateTypes": [
"commitMessageAction": "Refresh" "major"
],
"labels": [
"dependencies",
"major-update",
"breaking-change"
],
"addLabels": [
"needs-review"
]
}, },
"osvVulnerabilityAlerts": true {
} "description": "TypeScript type definitions stay grouped with each other",
"matchPackagePrefixes": [
"@types/"
],
"groupName": "type definitions"
},
{
"description": "Dev dependencies in their own group",
"matchDepTypes": [
"devDependencies"
],
"groupName": "dev dependencies"
},
{
"description": "Pin GitHub Action versions by SHA for supply-chain hygiene",
"matchManagers": [
"github-actions"
],
"pinDigests": true
}
],
"vulnerabilityAlerts": {
"labels": [
"security",
"vulnerability"
],
"schedule": [
"at any time"
],
"prPriority": 10
},
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"before 6am on monday"
],
"commitMessageAction": "Refresh"
},
"osvVulnerabilityAlerts": true
}