This repository has been archived on 2020-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
libricochet-go/testing/quality.sh

15 lines
278 B
Bash
Raw Normal View History

2018-06-23 15:45:17 +00:00
#!/bin/sh
echo "Checking code quality (you want to see no output here)"
echo "Formatting:"
gofmt -s -w -l .
2018-06-23 15:45:17 +00:00
echo "Vetting:"
go list ./... | xargs go vet
echo ""
echo "Linting:"
# Ignore wire packages as they are autogenerated
2019-01-23 18:48:58 +00:00
go list ./... | grep -v "/wire/" | xargs golint