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.hover.delay": 1500,
"prettier.quoteProps": "preserve",
}

View file

@ -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"]
}
]
}