From 95b931bb5271604460820c25881c71e6feb38ad6 Mon Sep 17 00:00:00 2001 From: max furman Date: Tue, 21 Apr 2020 10:10:33 -0700 Subject: [PATCH] Increase linter timeout limit ... * Breaking in Travis --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 91ceb344..a86ea0ee 100644 --- a/Makefile +++ b/Makefile @@ -116,7 +116,7 @@ fmt: $Q gofmt -l -w $(SRC) lint: - $Q LOG_LEVEL=error golangci-lint run + $Q LOG_LEVEL=error golangci-lint run --timeout=30m .PHONY: lint fmt