diff options
| author | Shulhan <ms@kilabit.info> | 2023-10-06 13:49:39 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-10-06 13:49:39 +0700 |
| commit | c5cc07900c67c2c8b565758dc4a66bc36b8cd7a9 (patch) | |
| tree | 64e68357c4f0dd8fe239b6918cdcf69dfe284a13 /Makefile | |
| parent | f364f10b8c5c71954d4ceb572cf3b18a61f077e0 (diff) | |
| download | gotp-c5cc07900c67c2c8b565758dc4a66bc36b8cd7a9.tar.xz | |
all: add task linter and fix all warnings
We use revive [1], fieldalignment [2], and shadow [3] as linters.
[1] https://github.com/mgechev/revive
[2] https://pkg.go.dev/golang.org/x/tools@v0.13.0/go/analysis/passes/fieldalignment/cmd/fieldalignment
[3] https://pkg.go.dev/golang.org/x/tools@v0.13.0/go/analysis/passes/shadow/cmd/shadow
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -3,12 +3,18 @@ .PHONY: all test build install serve-doc -all: test build +all: test lint build test: CGO_ENABLED=1 go test -race -failfast -coverprofile=cover.out ./... go tool cover -html=cover.out -o cover.html +.PHONY: lint +lint: + -revive ./... + -fieldalignment ./... + -shadow ./... + build: mkdir -p _sys/usr/bin/ go build -o _sys/usr/bin/ ./cmd/... |
