From 2a9e770d478609c8b39cfc52c2584548469ae7d3 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker <caarlos0@gmail.com> Date: Wed, 6 Jun 2018 20:44:11 -0300 Subject: [PATCH] test: disable golanci-lint on tests for now --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b45f82cc3..e9ed3ec8a 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ fmt: # Run all the linters lint: - golangci-lint run --enable-all ./... + golangci-lint run --tests=false --enable-all ./... find . -name '*.md' -not -wholename './vendor/*' | xargs prettier -l .PHONY: lint