From 4a6014a57365d0674d75c2a0c0831184c422a130 Mon Sep 17 00:00:00 2001 From: Joseph Hanson Date: Tue, 20 Aug 2024 23:37:13 -0500 Subject: [PATCH] format, fix commas --- .vscode/settings.json | 1 + renovate.json5 | 50 +++++++++++++++++++++---------------------- 2 files changed, 26 insertions(+), 25 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 7cc2216..28f3d17 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -22,4 +22,5 @@ }, "editor.fontFamily": "FiraCode Nerd Font", "editor.hover.delay": 1500, + "prettier.quoteProps": "preserve", } diff --git a/renovate.json5 b/renovate.json5 index ebe135c..4c1cc7e 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -1,26 +1,26 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "assignees": ["jahanson"], - "extends": ["config:best-practices"], - "semanticCommits": "enabled", - "packageRules": [ - { - "description": "use fix scope for renovate updates", - "matchPackageNames": ["ghcr.io/renovatebot/renovate"], - "semanticCommitType": "fix" - }, - { - "automerge": true, - "automergeType": "branch", // Directly merge to the branch without PR - "description": "Automerge renovate updates", - "ignoreTests": true, - "matchPackageNames": ["ghcr.io/renovatebot/renovate"], - "matchUpdateTypes": ["minor", "patch", "digest"], - }, - { - "description": "Update renovate only daily", - "extends": ["schedule:daily"] - "matchDepNames": ["ghcr.io/renovatebot/renovate"], - } - ] - } + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "assignees": ["jahanson"], + "extends": ["config:best-practices"], + "semanticCommits": "enabled", + "packageRules": [ + { + "description": "use fix scope for renovate updates", + "matchPackageNames": ["ghcr.io/renovatebot/renovate"], + "semanticCommitType": "fix" + }, + { + "automerge": true, + "automergeType": "branch", // Directly merge to the branch without PR + "description": "Automerge renovate updates", + "ignoreTests": true, + "matchPackageNames": ["ghcr.io/renovatebot/renovate"], + "matchUpdateTypes": ["minor", "patch", "digest"] + }, + { + "description": "Update renovate only daily", + "extends": ["schedule:daily"], + "matchDepNames": ["ghcr.io/renovatebot/renovate"] + } + ] +}