Added new checks #2

Merged
konrad merged 6 commits from new-checks into master 2018-09-23 19:15:15 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 81d5dff337 - Show all commits

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: