passgen/Makefile

12 lines
147 B
Makefile
Raw Normal View History

2024-08-14 12:27:59 +03:00
.PHONY: build fmt lint
build: fmt lint
go build .
fmt:
gofmt -w -r "interface{} -> any" .
go fmt ./...
lint:
go vet ./...
staticcheck ./...