gosimpleconf/Makefile

11 lines
133 B
Makefile

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