summaryrefslogtreecommitdiff
path: root/vendor/github.com/wagslane/go-password-validator/Makefile
blob: 3b16ce69738118af6855d3914b928b74b92c2974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
test:
	go test ./...

fmt:
	go fmt ./...

vet:
	go vet ./...

install-lint:
	GO111MODULE=off go get -u golang.org/x/lint/golint
	GO111MODULE=off go list -f {{.Target}} golang.org/x/lint/golint

lint:
	go list ./... | grep -v /vendor/ | xargs -L1 golint -set_exit_status

install-staticcheck:
	GO111MODULE=off go get honnef.co/go/tools/cmd/staticcheck

staticcheck:
	staticcheck -f stylish ./...