Files
John Smith 81d8c90be0 style: fix trailing whitespace and missing final newlines
EditorConfig CI was reporting 22 files with trailing-ws and no-final-newline
violations. Fixed via sed batch:
- Strip trailing whitespace from end of each line
- Append final newline if file doesn't end with one

Down from 28 errors to 6. Remaining 6 are indent/style issues (B2).
2026-07-24 13:53:37 -04:00

46 lines
989 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"semanticCommits": "enabled",
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"platformAutomerge": true,
"packageRules": [
{
"description": "Automerge non-major updates",
"matchUpdateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"description": "Automerge actions",
"matchDepTypes": [
"action"
],
"matchUpdateTypes": [
"major",
"minor",
"patch"
],
"automerge": true
}
],
"regexManagers": [
{
"fileMatch": [
"^\\.github/workflows/[^/]+\\.ya?ml$"
],
"matchStrings": [
"uses: hustcer/setup-nu@.*?\\n.*?version: '\\s*(?<currentValue>.*?)'"
],
"depNameTemplate": "nushell",
"datasourceTemplate": "github-releases",
"packageNameTemplate": "nushell/nushell"
}
]
}