Added new checks to makefile

This commit is contained in:
konrad 2018-09-23 21:04:23 +02:00
parent d1bb13b2ce
commit 81d5dff337
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ misspell-check:
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
go get -u github.com/client9/misspell/cmd/misspell; \
fi
for S in $(GOFILES); do misspell $$S || exit 1; done;
for S in $(GOFILES); do misspell -error $$S || exit 1; done;
.PHONY: ineffassign-check
ineffassign-check: