makefile: added fmt target

This commit is contained in:
Michał Matczuk 2017-11-23 17:09:44 +01:00
parent 8dc9fd8526
commit e278d7cc92

View file

@ -4,6 +4,10 @@ all: clean check test
clean:
@go clean -r
.PHONY: fmt
fmt:
@go fmt ./...
.PHONY: check
check: .check-fmt .check-vet .check-lint .check-ineffassign .check-mega .check-misspell