gosimpleconf/Makefile

12 lines
143 B
Makefile

all: linter test
test:
go test
lint: linter
linter:
golangci-lint run
goimports_everything:
find . -name "*.go" -exec goimports -w {} \;