Commit ab67b34d authored by Nick Thomas's avatar Nick Thomas

Merge branch 'mk/fmt-no-dot-files' into 'master'

Exclude dot-files from being linted

See merge request gitlab-org/gitlab-workhorse!641
parents 5bbf4932 59f49603
...@@ -22,7 +22,7 @@ export PATH := $(GOBIN):$(PATH) ...@@ -22,7 +22,7 @@ export PATH := $(GOBIN):$(PATH)
export GOPROXY ?= https://proxy.golang.org export GOPROXY ?= https://proxy.golang.org
export GO111MODULE=on export GO111MODULE=on
LOCAL_GO_FILES = $(shell find . -type f -name '*.go' | grep -v -e /_ -e /testdata/) LOCAL_GO_FILES = $(shell find . -type f -name '*.go' | grep -v -e /_ -e /testdata/ -e '^\./\.')
define message define message
@echo "### $(1)" @echo "### $(1)"
......
---
title: Exclude dot-files from "make fmt" target
merge_request: 641
author:
type: other
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment