6 lines
80 B
Makefile
6 lines
80 B
Makefile
all: lint
|
|
|
|
lint:
|
|
gofmt -l .
|
|
golint -min_confidence=0.3 .
|
|
golangci-lint run .
|