github.com/Johnny2210/revive@v1.0.8-0.20210625134200-febf37ccd0f5/testdata/golint/time-naming.go (about)

     1  // Test of time suffixes.
     2  
     3  // Package foo ...
     4  package foo
     5  
     6  import (
     7  	"flag"
     8  	"time"
     9  )
    10  
    11  var rpcTimeoutMsec = flag.Duration("rpc_timeout", 100*time.Millisecond, "some flag") // MATCH /var rpcTimeoutMsec is of type *time.Duration; don't use unit-specific suffix "Msec"/
    12  
    13  var timeoutSecs = 5 * time.Second // MATCH /var timeoutSecs is of type time.Duration; don't use unit-specific suffix "Secs"/