Added a check for unused imports

This commit is contained in:
2024-07-31 11:55:21 +02:00
parent 2293603923
commit 87ae78c86a
14 changed files with 138 additions and 31 deletions

View File

@ -0,0 +1,18 @@
package errors
import "fmt"
// UnknownPackage represents unknown package errors.
type UnknownPackage struct {
Name string
CorrectName string
}
// Error generates the string representation.
func (err *UnknownPackage) Error() string {
if err.CorrectName != "" {
return fmt.Sprintf("Unknown package '%s', did you mean '%s'?", err.Name, err.CorrectName)
}
return fmt.Sprintf("Unknown package '%s'", err.Name)
}

View File

@ -0,0 +1,13 @@
package errors
import "fmt"
// UnusedImport error is created when an import is never used.
type UnusedImport struct {
Package string
}
// Error generates the string representation.
func (err *UnusedImport) Error() string {
return fmt.Sprintf("Unused import '%s'", err.Package)
}