1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-27 22:18:41 +02:00
Files
revive/testdata/redundant_import_alias.go

12 lines
233 B
Go
Raw Normal View History

package fixtures
2025-05-26 13:54:46 +03:00
import (
"crypto/md5"
2025-05-26 13:54:46 +03:00
_ "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/
)