We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737701d commit e657884Copy full SHA for e657884
Makefile
@@ -24,6 +24,7 @@ test:
24
stdout=$$(gofumpt -l . 2>&1); if [ "$$stdout" ]; then exit 1; fi
25
go vet ./...
26
misspell -error $(GO_FILES)
27
+ gocyclo -over 10 $(GO_FILES)
28
staticcheck ./...
29
errcheck -exclude errcheck_excludes.txt ./...
30
gocritic check -disable='#experimental,#opinionated' [email protected] 3 ./...
@@ -36,6 +37,7 @@ test:
36
37
.PHONY: setup
38
setup:
39
go install github.com/client9/misspell/cmd/misspell@latest
40
+ go install github.com/fzipp/gocyclo/cmd/gocyclo@latest
41
go install github.com/go-critic/go-critic/cmd/gocritic@latest
42
go install github.com/kisielk/errcheck@latest
43
go install github.com/mgechev/revive@latest
0 commit comments