From 83cee4dfb4d3e1da0295511833de91cd7533c8fc Mon Sep 17 00:00:00 2001 From: Dheeraj Dubey Date: Sun, 10 Jul 2022 22:57:08 +0530 Subject: [PATCH] add lint tools dependency --- tools/tools.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/tools.go diff --git a/tools/tools.go b/tools/tools.go new file mode 100644 index 000000000..a16035f61 --- /dev/null +++ b/tools/tools.go @@ -0,0 +1,13 @@ +//go:build tools +// +build tools + +// This file uses the recommended method for tracking developer tools in a Go +// module. +// +// REF: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module +package tools + +import ( + _ "github.com/golangci/golangci-lint/cmd/golangci-lint" + _ "mvdan.cc/gofumpt" +)