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

     1  package testdata
     2  
     3  import "time"
     4  
     5  var (
     6  	Hour     = time.Hour      // MATCH /var Hour is of type time.Duration; don't use unit-specific suffix "Hour"/
     7  	oneHour  = time.Hour      // MATCH /var oneHour is of type time.Duration; don't use unit-specific suffix "Hour"/
     8  	twoHours = 2 * time.Hour  // MATCH /var twoHours is of type time.Duration; don't use unit-specific suffix "Hours"/
     9  	TenHours = 10 * time.Hour // MATCH /var TenHours is of type time.Duration; don't use unit-specific suffix "Hours"/
    10  	SixHours = 6 * time.Hour  // MATCH /var SixHours is of type time.Duration; don't use unit-specific suffix "Hours"/
    11  
    12  	oneMin     = time.Minute     // MATCH /var oneMin is of type time.Duration; don't use unit-specific suffix "Min"/
    13  	Min        = time.Minute     // MATCH /var Min is of type time.Duration; don't use unit-specific suffix "Min"/
    14  	twoMin     = 2 * time.Minute // MATCH /var twoMin is of type time.Duration; don't use unit-specific suffix "Min"/
    15  	SixMin     = 6 * time.Minute // MATCH /var SixMin is of type time.Duration; don't use unit-specific suffix "Min"/
    16  	SixMins    = 6 * time.Minute // MATCH /var SixMins is of type time.Duration; don't use unit-specific suffix "Mins"/
    17  	SixMinutes = 6 * time.Minute // MATCH /var SixMinutes is of type time.Duration; don't use unit-specific suffix "Minutes"/
    18  
    19  	oneSec     = time.Second     // MATCH /var oneSec is of type time.Duration; don't use unit-specific suffix "Sec"/
    20  	Sec        = time.Second     // MATCH /var Sec is of type time.Duration; don't use unit-specific suffix "Sec"/
    21  	SixSec     = 6 * time.Second // MATCH /var SixSec is of type time.Duration; don't use unit-specific suffix "Sec"/
    22  	twoSecs    = 2 * time.Second // MATCH /var twoSecs is of type time.Duration; don't use unit-specific suffix "Secs"/
    23  	SixSeconds = 6 * time.Second // MATCH /var SixSeconds is of type time.Duration; don't use unit-specific suffix "Seconds"/
    24  	oneSecond  = time.Second     // MATCH /var oneSecond is of type time.Duration; don't use unit-specific suffix "Second"/
    25  	Second     = time.Second     // MATCH /var Second is of type time.Duration; don't use unit-specific suffix "Second"/
    26  
    27  	SixMsec         = 6 * time.Millisecond // MATCH /var SixMsec is of type time.Duration; don't use unit-specific suffix "Msec"/
    28  	oneMsec         = time.Millisecond     // MATCH /var oneMsec is of type time.Duration; don't use unit-specific suffix "Msec"/
    29  	SixMsecs        = 6 * time.Millisecond // MATCH /var SixMsecs is of type time.Duration; don't use unit-specific suffix "Msecs"/
    30  	oneMilli        = time.Millisecond     // MATCH /var oneMilli is of type time.Duration; don't use unit-specific suffix "Milli"/
    31  	SixMillis       = 6 * time.Millisecond // MATCH /var SixMillis is of type time.Duration; don't use unit-specific suffix "Millis"/
    32  	SixMilliseconds = 6 * time.Millisecond // MATCH /var SixMilliseconds is of type time.Duration; don't use unit-specific suffix "Milliseconds"/
    33  	oneMillisecond  = time.Millisecond     // MATCH /var oneMillisecond is of type time.Duration; don't use unit-specific suffix "Millisecond"/
    34  	Millisecond     = time.Millisecond     // MATCH /var Millisecond is of type time.Duration; don't use unit-specific suffix "Millisecond"/
    35  
    36  	oneUsec         = 1 * time.Microsecond // MATCH /var oneUsec is of type time.Duration; don't use unit-specific suffix "Usec"/
    37  	twoUsec         = 2 * time.Microsecond // MATCH /var twoUsec is of type time.Duration; don't use unit-specific suffix "Usec"/
    38  	SixUsec         = 6 * time.Microsecond // MATCH /var SixUsec is of type time.Duration; don't use unit-specific suffix "Usec"/
    39  	SixUsecs        = 6 * time.Microsecond // MATCH /var SixUsecs is of type time.Duration; don't use unit-specific suffix "Usecs"/
    40  	twoMicroseconds = 2 * time.Microsecond // MATCH /var twoMicroseconds is of type time.Duration; don't use unit-specific suffix "Microseconds"/
    41  	SixMicroseconds = 6 * time.Microsecond // MATCH /var SixMicroseconds is of type time.Duration; don't use unit-specific suffix "Microseconds"/
    42  	oneMicrosecond  = 1 * time.Microsecond // MATCH /var oneMicrosecond is of type time.Duration; don't use unit-specific suffix "Microsecond"/
    43  	SixMS           = 6 * time.Microsecond // MATCH /var SixMS is of type time.Duration; don't use unit-specific suffix "MS"/
    44  	oneMS           = 1 * time.Microsecond // MATCH /var oneMS is of type time.Duration; don't use unit-specific suffix "MS"/
    45  
    46  )