1
0
mirror of https://github.com/mgechev/revive.git synced 2024-11-24 08:32:22 +02:00
revive/defaultrule/utils.go

19 lines
409 B
Go
Raw Normal View History

2017-11-27 04:48:07 +02:00
package defaultrule
import (
2017-11-27 04:58:15 +02:00
"go/ast"
2017-11-27 04:48:07 +02:00
"strings"
"github.com/mgechev/revive/file"
)
2017-11-27 04:58:15 +02:00
const styleGuideBase = "https://golang.org/wiki/CodeReviewComments"
// isBlank returns whether id is the blank identifier "_".
// If id == nil, the answer is false.
func isBlank(id *ast.Ident) bool { return id != nil && id.Name == "_" }
2017-11-27 04:48:07 +02:00
func isTest(f *file.File) bool {
return strings.HasSuffix(f.Name, "_test.go")
}