github.com/songshiyun/revive@v1.1.5-0.20220323112655-f8433a19b3c5/testdata/imports-blacklist.go (about)

     1  package fixtures
     2  
     3  import (
     4  	"crypto/md5"  //  MATCH /should not use the following blacklisted import: "crypto/md5"/
     5  	"crypto/sha1" // MATCH /should not use the following blacklisted import: "crypto/sha1"/
     6  	"strings"
     7  )