gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Makefile (395B)


      1 test:
      2 	go test ./...
      3 
      4 fmt:
      5 	go fmt ./...
      6 
      7 vet:
      8 	go vet ./...
      9 
     10 install-lint:
     11 	GO111MODULE=off go get -u golang.org/x/lint/golint
     12 	GO111MODULE=off go list -f {{.Target}} golang.org/x/lint/golint
     13 
     14 lint:
     15 	go list ./... | grep -v /vendor/ | xargs -L1 golint -set_exit_status
     16 
     17 install-staticcheck:
     18 	GO111MODULE=off go get honnef.co/go/tools/cmd/staticcheck
     19 
     20 staticcheck:
     21 	staticcheck -f stylish ./...