this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lint: run 'go vet' defaults (all rules)

+1 -1
+1 -1
Makefile
··· 51 51 52 52 .PHONY: lint 53 53 lint: ## Verify code style and run static checks 54 - go vet -asmdecl -assign -atomic -bools -buildtag -cgocall -copylocks -httpresponse -loopclosure -lostcancel -nilfunc -printf -shift -stdmethods -structtag -tests -unmarshal -unreachable -unsafeptr -unusedresult ./... 54 + go vet ./... 55 55 test -z $(gofmt -l ./...) 56 56 57 57 .PHONY: fmt