16 lines
366 B
Bash
Executable File
16 lines
366 B
Bash
Executable File
#!/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 "$@"
|