We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d1fb67 commit 944a3f6Copy full SHA for 944a3f6
pkg/golinters/gofuncor/testdata/gofuncor.go
@@ -1,3 +1,4 @@
1
+//golangcitest:args -Egofuncor
2
package testdata
3
4
import "time"
@@ -6,7 +7,7 @@ type MyStruct struct {
6
7
Name string
8
}
9
-func (m MyStruct) lenName() int { // want `unexported method "lenName" for struct "MyStruct" should be placed after the exported method "GetName"`
10
+func (m MyStruct) lenName() int { // want `unexported method "lenName" for struct "MyStruct" should be placed after the exported method "SetName"`
11
return len(m.Name)
12
13
0 commit comments