github.com/golangCi/golangCi-lint@v1.10.1/test/testdata/withxtest/p_test.go (about) 1 package p_test 2 3 import "fmt" 4 5 func WithGolintIssues(b bool) { //nolint:megacheck 6 if b { 7 return 8 } else { 9 fmt.Print("1") 10 } 11 }