Skip to content

Commit 8ad926e

Browse files
Migrate Renovate config to JSON5 format
Replaces renovate.json with renovate.json5, updating the configuration to use JSON5 syntax and adding a $schema reference and lockFileMaintenance settings. Delete renovate.json
1 parent dde146e commit 8ad926e

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

renovate.json

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

renovate.json5

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
3+
prConcurrentLimit: 100,
4+
schedule: ['every friday'],
5+
lockFileMaintenance: {
6+
enabled: true,
7+
},
8+
packageRules: [
9+
{
10+
matchPackagePatterns: ['.*'],
11+
matchManagers: ['cargo'],
12+
},
13+
{
14+
matchPackagePatterns: ['.*'],
15+
matchManagers: ['uv'],
16+
},
17+
],
18+
}

0 commit comments

Comments
 (0)