2021-12-04 16:42:11 +00:00

39 lines
747 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/.."
go mod tidy
gofmt -w -s .
goimports -w "-local=$(go list -m)" .
prettier \
--write \
--print-width=120 \
--no-semi \
--trailing-comma=all \
--loglevel=warn \
--arrow-parens=avoid \
$(git ls-files "*.yml" "*.md" "*.js" "*.css" "*.html")
shfmt -i 2 -w -s -sr $(git ls-files "*.sh")
stringer -type=opcode,MessageType,StatusCode -output=stringer.go
if [[ ${CI-} ]]; then
ensure_fmt
fi
}
ensure_fmt() {
if [[ $(git ls-files --other --modified --exclude-standard) ]]; then
git -c color.ui=always --no-pager diff
echo
echo "Please run the following locally:"
echo " ./ci/fmt.sh"
exit 1
fi
}
main "$@"