
gometalinter runs linters in parallel for faster linting it provides a uniform way of whitelisting lines using // nolint or the exclude field in the config Signed-off-by: Daniel Nephin <dnephin@gmail.com>
11 lines
156 B
Makefile
11 lines
156 B
Makefile
#Windows specific settings.
|
|
WHALE = "+"
|
|
ONI = "-"
|
|
|
|
BINARY_SUFFIX=".exe"
|
|
|
|
# amd64 supports go test -race
|
|
ifeq ($(GOARCH),amd64)
|
|
TESTFLAGS_RACE= -race
|
|
endif
|