Merge pull request #1452 from prometheus/fix-style-checker

Detect code style violations in deeply nested files
This commit is contained in:
Fabian Reinartz 2016-03-03 09:22:56 +01:00
commit 29e31dc3c6

View file

@ -23,7 +23,7 @@ all: format build test
style:
@echo ">> checking code style"
@! gofmt -d **/*.go | grep '^'
@! gofmt -d $(shell find . -path ./vendor -prune -o -name '*.go' -print) | grep '^'
test:
@echo ">> running tests"