Skip to content

Commit

Permalink
add lint tools dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
dheerajkd30 committed Jul 10, 2022
1 parent c8a2967 commit 83cee4d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tools/tools.go
Original file line number Diff line number Diff line change
@@ -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"
)

0 comments on commit 83cee4d

Please sign in to comment.