mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
package rule
|
|
|
|
import (
|
|
"fmt"
|
|
"go/ast"
|
|
"strings"
|
|
|
|
"github.com/mgechev/revive/lint"
|
|
)
|
|
|
|
// RedundantImportAlias lints given else constructs.
|
|
type RedundantImportAlias struct{}
|
|
|
|
// Apply applies the rule to given file.
|
|
func (*RedundantImportAlias) Apply(file *lint.File, _ lint.Arguments) []lint.Failure {
|
|
var failures []lint.Failure
|
|
|
|
for _, imp := range file.AST.Imports {
|
|
if imp.Name == nil {
|
|
continue
|
|
}
|
|
|
|
if getImportPackageName(imp) == imp.Name.Name {
|
|
failures = append(failures, lint.Failure{
|
|
Confidence: 1,
|
|
Failure: fmt.Sprintf("Import alias \"%s\" is redundant", imp.Name.Name),
|
|
Node: imp,
|
|
Category: "imports",
|
|
})
|
|
}
|
|
}
|
|
|
|
return failures
|
|
}
|
|
|
|
// Name returns the rule name.
|
|
func (*RedundantImportAlias) Name() string {
|
|
return "redundant-import-alias"
|
|
}
|
|
|
|
func getImportPackageName(imp *ast.ImportSpec) string {
|
|
const pathSep = "/"
|
|
const strDelim = `"`
|
|
|
|
path := imp.Path.Value
|
|
i := strings.LastIndex(path, pathSep)
|
|
if i == -1 {
|
|
return strings.Trim(path, strDelim)
|
|
}
|
|
|
|
return strings.Trim(path[i+1:], strDelim)
|
|
}
|