Add staticcheck tool
This commit is contained in:
75
vendor/honnef.co/go/tools/quickfix/qf1010/qf1010.go
vendored
Normal file
75
vendor/honnef.co/go/tools/quickfix/qf1010/qf1010.go
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
package qf1010
|
||||
|
||||
import (
|
||||
"go/ast"
|
||||
"go/types"
|
||||
|
||||
"honnef.co/go/tools/analysis/code"
|
||||
"honnef.co/go/tools/analysis/edit"
|
||||
"honnef.co/go/tools/analysis/lint"
|
||||
"honnef.co/go/tools/analysis/report"
|
||||
"honnef.co/go/tools/knowledge"
|
||||
"honnef.co/go/tools/pattern"
|
||||
|
||||
"golang.org/x/tools/go/analysis"
|
||||
)
|
||||
|
||||
var SCAnalyzer = lint.InitializeAnalyzer(&lint.Analyzer{
|
||||
Analyzer: &analysis.Analyzer{
|
||||
Name: "QF1010",
|
||||
Run: run,
|
||||
Requires: code.RequiredAnalyzers,
|
||||
},
|
||||
Doc: &lint.RawDocumentation{
|
||||
Title: "Convert slice of bytes to string when printing it",
|
||||
Since: "2021.1",
|
||||
Severity: lint.SeverityHint,
|
||||
},
|
||||
})
|
||||
|
||||
var Analyzer = SCAnalyzer.Analyzer
|
||||
|
||||
var byteSlicePrintingQ = pattern.MustParse(`
|
||||
(Or
|
||||
(CallExpr
|
||||
(Symbol (Or
|
||||
"fmt.Print"
|
||||
"fmt.Println"
|
||||
"fmt.Sprint"
|
||||
"fmt.Sprintln"
|
||||
"log.Fatal"
|
||||
"log.Fatalln"
|
||||
"log.Panic"
|
||||
"log.Panicln"
|
||||
"log.Print"
|
||||
"log.Println"
|
||||
"(*log.Logger).Fatal"
|
||||
"(*log.Logger).Fatalln"
|
||||
"(*log.Logger).Panic"
|
||||
"(*log.Logger).Panicln"
|
||||
"(*log.Logger).Print"
|
||||
"(*log.Logger).Println")) args)
|
||||
|
||||
(CallExpr (Symbol (Or
|
||||
"fmt.Fprint"
|
||||
"fmt.Fprintln")) _:args))`)
|
||||
|
||||
var byteSlicePrintingR = pattern.MustParse(`(CallExpr (Ident "string") [arg])`)
|
||||
|
||||
func run(pass *analysis.Pass) (any, error) {
|
||||
for _, m := range code.Matches(pass, byteSlicePrintingQ) {
|
||||
args := m.State["args"].([]ast.Expr)
|
||||
for _, arg := range args {
|
||||
if !code.IsOfStringConvertibleByteSlice(pass, arg) {
|
||||
continue
|
||||
}
|
||||
if types.Implements(pass.TypesInfo.TypeOf(arg), knowledge.Interfaces["fmt.Stringer"]) {
|
||||
continue
|
||||
}
|
||||
|
||||
fix := edit.Fix("Convert argument to string", edit.ReplaceWithPattern(pass.Fset, arg, byteSlicePrintingR, pattern.State{"arg": arg}))
|
||||
report.Report(pass, arg, "could convert argument to string", report.Fixes(fix))
|
||||
}
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
Reference in New Issue
Block a user