blob: fcc67eb60e679a2a220ec6e5990c5702980352b5 [file] [log] [blame]
// The analyze command is a static checker for Go programs, similar to
// vet, but with pluggable analyzers defined using the analysis
// interface, and using the go/packages API to load packages in any
// build system.
//
// Each analysis flag name is preceded by the analysis name: --analysis.flag.
// In addition, the --analysis.enabled flag controls whether the
// diagnostics of that analysis are displayed. (A disabled analysis may yet
// be run if it is required by some other analysis that is enabled.)
package main
import (
"log"
"golang.org/x/tools/go/analysis/multichecker"
// analysis plug-ins
"golang.org/x/tools/go/analysis/passes/buildtag"
"golang.org/x/tools/go/analysis/passes/findcall"
)
func main() {
log.SetFlags(0)
log.SetPrefix("analyze: ")
multichecker.Main(
findcall.Analyzer,
buildtag.Analyzer,
)
}