Add labels to tasks (#45)
This commit is contained in:
23
vendor/honnef.co/go/tools/cmd/staticcheck/staticcheck.go
vendored
Normal file
23
vendor/honnef.co/go/tools/cmd/staticcheck/staticcheck.go
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
// staticcheck detects a myriad of bugs and inefficiencies in your
|
||||
// code.
|
||||
package main // import "honnef.co/go/tools/cmd/staticcheck"
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"honnef.co/go/tools/lint/lintutil"
|
||||
"honnef.co/go/tools/staticcheck"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fs := lintutil.FlagSet("staticcheck")
|
||||
gen := fs.Bool("generated", false, "Check generated code")
|
||||
fs.Parse(os.Args[1:])
|
||||
c := staticcheck.NewChecker()
|
||||
c.CheckGenerated = *gen
|
||||
cfg := lintutil.CheckerConfig{
|
||||
Checker: c,
|
||||
ExitNonZero: true,
|
||||
}
|
||||
lintutil.ProcessFlagSet([]lintutil.CheckerConfig{cfg}, fs)
|
||||
}
|
Reference in New Issue
Block a user