gopackagebase/Makefile

12 lines
143 B
Makefile
Raw Permalink Normal View History

2022-11-09 01:06:01 -08:00
all: linter test
test:
go test
lint: linter
linter:
golangci-lint run
goimports_everything:
find . -name "*.go" -exec goimports -w {} \;