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

     1  package fixtures
     2  
     3  func foo() string {
     4  	customId := "result"
     5  	customVm := "result" // MATCH /var customVm should be customVM/
     6  	return customId
     7  }