1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-23 22:04:49 +02:00
Files
revive/testdata/redundant_import_alias.go
2025-05-26 03:54:46 -07:00

12 lines
233 B
Go

package fixtures
import (
"crypto/md5"
_ "crypto/md5"
crypto "crypto/md5"
md5 "crypto/md5" // MATCH /Import alias "md5" is redundant/
"strings"
str "strings"
strings "strings" // MATCH /Import alias "strings" is redundant/
)