Skip to content

Commit

Permalink
init go mod
Browse files Browse the repository at this point in the history
  • Loading branch information
aljo242 committed Nov 8, 2023
1 parent ee7e893 commit 2e65519
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tools/tools.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//go:build tools
// +build tools

package tools

// Manage tool dependencies via go.mod.
//
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
// https://github.com/golang/go/issues/25922

//nolint:all
import (
_ "github.com/client9/misspell/cmd/misspell"
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "golang.org/x/tools/cmd/goimports"
_ "mvdan.cc/gofumpt"
)

0 comments on commit 2e65519

Please sign in to comment.