github.com/web-platform-tests/wpt.fyi@v0.0.0-20240530210107-70cf978996f1/util/tools.go (about)

     1  // +build tools
     2  
     3  package util
     4  
     5  import (
     6  	// Import all the tools we use in order to track the deps in go.mod as recommended by
     7  	// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
     8  	// https://github.com/go-modules-by-example/index/blob/master/010_tools/README.md
     9  	_ "github.com/gobuffalo/packr/v2/packr2"
    10  	_ "github.com/golang/mock/mockgen"
    11  	_ "golang.org/x/lint/golint"
    12  )