This repository has been archived on 2023-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
libcwtch-go/quality.sh

25 lines
553 B
Bash
Raw Normal View History

2021-06-24 22:30:46 +00:00
#!/bin/sh
echo "Checking code quality (you want to see no output here)"
echo ""
2022-01-12 22:11:35 +00:00
echo "Vetting:"
go list ./... | xargs go vet
2021-06-24 22:30:46 +00:00
echo ""
echo "Linting:"
2022-01-12 22:11:35 +00:00
staticcheck ./...
2021-06-24 22:30:46 +00:00
echo "Time to format"
gofmt -l -s -w .
# ineffassign (https://github.com/gordonklaus/ineffassign)
echo "Checking for ineffectual assignment of errors (unchecked errors...)"
ineffassign .
# misspell (https://github.com/client9/misspell/cmd/misspell)
echo "Checking for misspelled words..."
2022-01-12 22:11:35 +00:00
misspell . | grep -v "testing/" | grep -v "vendor/" | grep -v "go.sum" | grep -v ".idea"