-
Notifications
You must be signed in to change notification settings - Fork 9
fix(renovate): renovate validation #54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
| "extends": [ | ||
| "extends": [ | ||
| "github>ublue-os/renovate-config:org-inherited-config" | ||
| ], | ||
| "packageRules": [ | ||
|
|
@@ -13,12 +13,12 @@ | |
| ], | ||
| "regexManagers": [ | ||
| { | ||
| "fileMatch": ["^Containerfile$"], | ||
| "fileMatch": ["^Containerfile$"], | ||
|
||
| "matchStrings": [ | ||
| "https://github\\.com/ublue-os/artwork/releases/download/aurora-v(?<version>[0-9\\-]+)/aurora-wallpapers\\.tar\\.zstd" | ||
| "https://github\\.com/ublue-os/artwork/releases/download/aurora-v(?<currentValue>[0-9\\-]+)/aurora-wallpapers\\.tar\\.zstd" | ||
| ], | ||
| "datasourceTemplate": "github-releases", | ||
| "depNameTemplate": "ublue-os/artwork" | ||
| "depNameTemplate": "ublue-os/artwork" | ||
|
||
| } | ||
| ] | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The whitespace changes (extra spaces after colons) introduce inconsistent formatting in the JSON5 file. Lines 3, 16, and 21 now have two spaces after the colon, while other properties in the file (lines 2, 17, 20) maintain single spaces. This inconsistency reduces code maintainability and doesn't appear to fix any validation issues. Consider either applying consistent spacing throughout the file or reverting these whitespace-only changes.