mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 14:17:36 +03:00
Update deps
This commit is contained in:
parent
f033bb3034
commit
5a091c6da4
1997 changed files with 368830 additions and 2045 deletions
21
vendor/github.com/jirfag/go-printf-func-name/LICENSE
generated
vendored
Normal file
21
vendor/github.com/jirfag/go-printf-func-name/LICENSE
generated
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2020 Isaev Denis
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
74
vendor/github.com/jirfag/go-printf-func-name/pkg/analyzer/analyzer.go
generated
vendored
Normal file
74
vendor/github.com/jirfag/go-printf-func-name/pkg/analyzer/analyzer.go
generated
vendored
Normal file
|
@ -0,0 +1,74 @@
|
|||
package analyzer
|
||||
|
||||
import (
|
||||
"go/ast"
|
||||
"strings"
|
||||
|
||||
"golang.org/x/tools/go/analysis/passes/inspect"
|
||||
"golang.org/x/tools/go/ast/inspector"
|
||||
|
||||
"golang.org/x/tools/go/analysis"
|
||||
)
|
||||
|
||||
var Analyzer = &analysis.Analyzer{
|
||||
Name: "goprintffuncname",
|
||||
Doc: "Checks that printf-like functions are named with `f` at the end.",
|
||||
Run: run,
|
||||
Requires: []*analysis.Analyzer{inspect.Analyzer},
|
||||
}
|
||||
|
||||
func run(pass *analysis.Pass) (interface{}, error) {
|
||||
inspector := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
|
||||
nodeFilter := []ast.Node{
|
||||
(*ast.FuncDecl)(nil),
|
||||
}
|
||||
|
||||
inspector.Preorder(nodeFilter, func(node ast.Node) {
|
||||
funcDecl := node.(*ast.FuncDecl)
|
||||
|
||||
if res := funcDecl.Type.Results; res != nil && len(res.List) != 0 {
|
||||
return
|
||||
}
|
||||
|
||||
params := funcDecl.Type.Params.List
|
||||
if len(params) < 2 { // [0] must be format (string), [1] must be args (...interface{})
|
||||
return
|
||||
}
|
||||
|
||||
formatParamType, ok := params[len(params)-2].Type.(*ast.Ident)
|
||||
if !ok { // first param type isn't identificator so it can't be of type "string"
|
||||
return
|
||||
}
|
||||
|
||||
if formatParamType.Name != "string" { // first param (format) type is not string
|
||||
return
|
||||
}
|
||||
|
||||
if formatParamNames := params[len(params)-2].Names; len(formatParamNames) == 0 || formatParamNames[len(formatParamNames)-1].Name != "format" {
|
||||
return
|
||||
}
|
||||
|
||||
argsParamType, ok := params[len(params)-1].Type.(*ast.Ellipsis)
|
||||
if !ok { // args are not ellipsis (...args)
|
||||
return
|
||||
}
|
||||
|
||||
elementType, ok := argsParamType.Elt.(*ast.InterfaceType)
|
||||
if !ok { // args are not of interface type, but we need interface{}
|
||||
return
|
||||
}
|
||||
|
||||
if elementType.Methods != nil && len(elementType.Methods.List) != 0 {
|
||||
return // has >= 1 method in interface, but we need an empty interface "interface{}"
|
||||
}
|
||||
|
||||
if strings.HasSuffix(funcDecl.Name.Name, "f") {
|
||||
return
|
||||
}
|
||||
|
||||
pass.Reportf(node.Pos(), "printf-like formatting function '%s' should be named '%sf'",
|
||||
funcDecl.Name.Name, funcDecl.Name.Name)
|
||||
})
|
||||
|
||||
return nil, nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue