mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
3d433fe9f1
* lint: expand to src/{os,reflect}, fix or suppress what it found
* internal/tools/tools.go: the tools idiom requires a build tag guard to avoid go test complaints
10 lines
194 B
Go
10 lines
194 B
Go
//go:build tools
|
|
|
|
// Install linter versions specified in go.mod
|
|
// See https://marcofranssen.nl/manage-go-tools-via-go-modules for idom
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/mgechev/revive"
|
|
)
|