diff --git a/Makefile b/Makefile index 9b1bc3b0e..3bb5de5b7 100644 --- a/Makefile +++ b/Makefile @@ -26,8 +26,9 @@ lint: $(GOLINT) $(STATICCHECK) @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && go vet ./... 2>&1) &&) true | tee -a lint.log @echo "Checking lint..." @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && $(GOLINT) ./... 2>&1) &&) true | tee -a lint.log - @echo "Checking staticcheck..." - @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && $(STATICCHECK) ./... 2>&1) &&) true | tee -a lint.log + # @echo "Checking staticcheck..." + # @$(foreach dir,$(MODULE_DIRS),(cd $(dir) && $(STATICCHECK) ./... 2>&1) &&) true | tee -a lint.log + # TODO: Re-enable after https://github.com/dominikh/go-tools/issues/1166. @echo "Checking for unresolved FIXMEs..." @git grep -i fixme | grep -v -e Makefile | tee -a lint.log @echo "Checking for license headers..."