Add script/lint-fix entrypoint and make lint-fix shim (refs #61)

This commit is contained in:
2026-08-07 16:40:59 +00:00
parent 23d22a0f19
commit 04fce150bc
3 changed files with 21 additions and 1 deletions

View File

@@ -572,6 +572,7 @@ them. We provide:
image tag)
* `script/test` — run the test suite (verbose rerun on failure)
* `script/lint` — run `golangci-lint run ./...`
* `script/lint-fix` — apply the linter's autofixes (rewrites files)
* `script/fmt` — format all code (writes)
* `script/fmt-check` — check formatting (read-only)
* `script/check` — run `script/test`, `script/lint`, and