diff options
Diffstat (limited to 'backend/Makefile')
| -rw-r--r-- | backend/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/backend/Makefile b/backend/Makefile index 72d3314..e9bc5a6 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -1,6 +1,5 @@ -.PHONY: fmt -fmt: - go fmt ./... +.PHONY: all +all: check lint .PHONY: check check: @@ -8,7 +7,7 @@ check: .PHONY: lint lint: - go vet ./... + go run github.com/golangci/golangci-lint/cmd/golangci-lint run .PHONY: gen gen: |
