mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-02 01:57:48 +00:00
11 lines
227 B
Go
11 lines
227 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/client9/misspell"
|
|
_ "github.com/mgechev/revive"
|
|
)
|