mirror of
https://github.com/mgechev/revive.git
synced 2024-11-24 08:32:22 +02:00
19 lines
409 B
Go
19 lines
409 B
Go
package defaultrule
|
|
|
|
import (
|
|
"go/ast"
|
|
"strings"
|
|
|
|
"github.com/mgechev/revive/file"
|
|
)
|
|
|
|
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 == "_" }
|
|
|
|
func isTest(f *file.File) bool {
|
|
return strings.HasSuffix(f.Name, "_test.go")
|
|
}
|