From 52efbbccebfa8cadbf216a9d64f7ac44e36b41d4 Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Fri, 29 May 2020 18:54:38 +0200 Subject: [PATCH] Ignore packrd formatting --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f55373ca..06f30516 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ check-go: go vet ./... gocyclo -over 10 $(shell find . -iname '*.go' -type f | grep -v /vendor/) golint -set_exit_status $(shell go list ./... | grep -v mock) - goimports -l $(shell find . -type f -name '*.go' -not -path "./vendor/*") + goimports -l $(shell find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./packrd/*") check-js: (cd ui && yarn lint)