12 lines
144 B
Makefile
12 lines
144 B
Makefile
|
clean:
|
||
|
go clean
|
||
|
dep:
|
||
|
go mod tidy
|
||
|
fmt:
|
||
|
go fmt ./...
|
||
|
lint:
|
||
|
golangci-lint run
|
||
|
lint-all:
|
||
|
golangci-lint run --enable-all
|
||
|
.PHONY: dep lint clean
|