mirror of
https://github.com/mgechev/revive.git
synced 2024-11-28 08:49:11 +02:00
9a2eab34f1
Add the ability to allow list of packages to be dot imported. Add a new don-imports configuration: * `allowedPackages`: (string) comma-separated list of allowed dot import packages Example: ```toml [rule.dot-imports] arguments = [{ allowedPackages = "github.com/onsi/ginkgo/v2,github.com/onsi/gomega" }] ```
107 lines
2.3 KiB
Go
107 lines
2.3 KiB
Go
package rule
|
|
|
|
import (
|
|
"fmt"
|
|
"go/ast"
|
|
"sync"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
)
|
|
|
|
// DotImportsRule lints given else constructs.
|
|
type DotImportsRule struct {
|
|
sync.Mutex
|
|
allowedPackages allowPackages
|
|
}
|
|
|
|
// Apply applies the rule to given file.
|
|
func (r *DotImportsRule) Apply(file *lint.File, arguments lint.Arguments) []lint.Failure {
|
|
r.configure(arguments)
|
|
|
|
var failures []lint.Failure
|
|
|
|
fileAst := file.AST
|
|
walker := lintImports{
|
|
file: file,
|
|
fileAst: fileAst,
|
|
onFailure: func(failure lint.Failure) {
|
|
failures = append(failures, failure)
|
|
},
|
|
allowPackages: r.allowedPackages,
|
|
}
|
|
|
|
ast.Walk(walker, fileAst)
|
|
|
|
return failures
|
|
}
|
|
|
|
// Name returns the rule name.
|
|
func (*DotImportsRule) Name() string {
|
|
return "dot-imports"
|
|
}
|
|
|
|
func (r *DotImportsRule) configure(arguments lint.Arguments) {
|
|
r.Lock()
|
|
defer r.Unlock()
|
|
|
|
if r.allowedPackages != nil {
|
|
return
|
|
}
|
|
|
|
r.allowedPackages = make(allowPackages)
|
|
if len(arguments) == 0 {
|
|
return
|
|
}
|
|
|
|
args, ok := arguments[0].(map[string]any)
|
|
if !ok {
|
|
panic(fmt.Sprintf("Invalid argument to the dot-imports rule. Expecting a k,v map, got %T", arguments[0]))
|
|
}
|
|
|
|
if allowedPkgArg, ok := args["allowedPackages"]; ok {
|
|
if pkgs, ok := allowedPkgArg.([]any); ok {
|
|
for _, p := range pkgs {
|
|
if pkg, ok := p.(string); ok {
|
|
r.allowedPackages.add(pkg)
|
|
} else {
|
|
panic(fmt.Sprintf("Invalid argument to the dot-imports rule, string expected. Got '%v' (%T)", p, p))
|
|
}
|
|
}
|
|
} else {
|
|
panic(fmt.Sprintf("Invalid argument to the dot-imports rule, []string expected. Got '%v' (%T)", allowedPkgArg, allowedPkgArg))
|
|
}
|
|
}
|
|
}
|
|
|
|
type lintImports struct {
|
|
file *lint.File
|
|
fileAst *ast.File
|
|
onFailure func(lint.Failure)
|
|
allowPackages allowPackages
|
|
}
|
|
|
|
func (w lintImports) Visit(_ ast.Node) ast.Visitor {
|
|
for _, is := range w.fileAst.Imports {
|
|
if is.Name != nil && is.Name.Name == "." && !w.allowPackages.isAllowedPackage(is.Path.Value) {
|
|
w.onFailure(lint.Failure{
|
|
Confidence: 1,
|
|
Failure: "should not use dot imports",
|
|
Node: is,
|
|
Category: "imports",
|
|
})
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type allowPackages map[string]struct{}
|
|
|
|
func (ap allowPackages) add(pkg string) {
|
|
ap[fmt.Sprintf(`"%s"`, pkg)] = struct{}{} // import path strings are with double quotes
|
|
}
|
|
|
|
func (ap allowPackages) isAllowedPackage(pkg string) bool {
|
|
_, allowed := ap[pkg]
|
|
return allowed
|
|
}
|