internal/tools: move into root

This commit is contained in:
Jake Bailey
2026-04-14 13:25:43 -07:00
committed by Ron Evans
parent 12d41ba0c1
commit b792c10680
10 changed files with 96 additions and 182 deletions
+16
View File
@@ -0,0 +1,16 @@
//go:build tools
// Install tools specified in go.mod.
// See https://marcofranssen.nl/manage-go-tools-via-go-modules for idiom.
package main
import (
_ "github.com/golangci/misspell"
_ "github.com/mgechev/revive"
_ "go.bytecodealliance.org/cm"
_ "go.bytecodealliance.org/cmd/wit-bindgen-go"
)
//go:generate go install github.com/golangci/misspell/cmd/misspell
//go:generate go install github.com/mgechev/revive
//go:generate go install go.bytecodealliance.org/cmd/wit-bindgen-go