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

15
script/lint-fix Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
# script/lint-fix: run the linter's autofixer. Rewrites files in place
# for every finding the enabled linters know how to fix; findings
# without an autofix are reported but left alone (exit status is
# nonzero while any remain).
set -eu
ROOT="$(cd "$(dirname "$0")/.." && pwd -P)"
main() {
cd "$ROOT"
golangci-lint run --fix ./...
}
main "$@"