format, fix commas

This commit is contained in:
Joseph Hanson 2024-08-20 23:37:13 -05:00
parent fc54f684db
commit 4a6014a573
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
2 changed files with 26 additions and 25 deletions

View file

@ -22,4 +22,5 @@
}, },
"editor.fontFamily": "FiraCode Nerd Font", "editor.fontFamily": "FiraCode Nerd Font",
"editor.hover.delay": 1500, "editor.hover.delay": 1500,
"prettier.quoteProps": "preserve",
} }

View file

@ -1,26 +1,26 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"assignees": ["jahanson"], "assignees": ["jahanson"],
"extends": ["config:best-practices"], "extends": ["config:best-practices"],
"semanticCommits": "enabled", "semanticCommits": "enabled",
"packageRules": [ "packageRules": [
{ {
"description": "use fix scope for renovate updates", "description": "use fix scope for renovate updates",
"matchPackageNames": ["ghcr.io/renovatebot/renovate"], "matchPackageNames": ["ghcr.io/renovatebot/renovate"],
"semanticCommitType": "fix" "semanticCommitType": "fix"
}, },
{ {
"automerge": true, "automerge": true,
"automergeType": "branch", // Directly merge to the branch without PR "automergeType": "branch", // Directly merge to the branch without PR
"description": "Automerge renovate updates", "description": "Automerge renovate updates",
"ignoreTests": true, "ignoreTests": true,
"matchPackageNames": ["ghcr.io/renovatebot/renovate"], "matchPackageNames": ["ghcr.io/renovatebot/renovate"],
"matchUpdateTypes": ["minor", "patch", "digest"], "matchUpdateTypes": ["minor", "patch", "digest"]
}, },
{ {
"description": "Update renovate only daily", "description": "Update renovate only daily",
"extends": ["schedule:daily"] "extends": ["schedule:daily"],
"matchDepNames": ["ghcr.io/renovatebot/renovate"], "matchDepNames": ["ghcr.io/renovatebot/renovate"]
} }
] ]
} }