From 81f8a5e0d9787bbba81956326397582f871f48ab Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 18 Mar 2019 11:35:00 +0000 Subject: [PATCH] Use golangci-lint to check everything Now that this issue is fixed: https://github.com/golangci/golangci-lint/issues/204 We can use golangci-lint to check the printfuncs too. --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 3a0da91c4..a8f561b8f 100644 --- a/Makefile +++ b/Makefile @@ -61,10 +61,7 @@ racequicktest: # Do source code quality checks check: rclone - @# we still run go vet for -printfuncs which golangci-lint doesn't do yet - @# see: https://github.com/golangci/golangci-lint/issues/204 @echo "-- START CODE QUALITY REPORT -------------------------------" - @go vet $(BUILDTAGS) -printfuncs Debugf,Infof,Logf,Errorf ./... @golangci-lint run $(LINTTAGS) ./... @echo "-- END CODE QUALITY REPORT ---------------------------------"