We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f3956 commit 8a8c741Copy full SHA for 8a8c741
time.go
@@ -15,7 +15,7 @@ import (
15
// UnixZero sets the zero unix UTC timestamp we want to compare against.
16
//
17
// Unix 0 for an EST timezone is not equivalent to a UTC timezone.
18
-var UnixZero = time.Unix(0, 0).UTC()
+var UnixZero = time.Unix(0, 0).UTC() //nolint:gochecknoglobals
19
20
func init() {
21
dt := DateTime{}
ulid_test.go
@@ -21,8 +21,8 @@ const (
)
22
23
var (
24
- testUlidOverrideMtx sync.Mutex
25
- testUlidOverrideValMtx sync.Mutex
+ testUlidOverrideMtx sync.Mutex //nolint:gochecknoglobals
+ testUlidOverrideValMtx sync.Mutex //nolint:gochecknoglobals
26
27
28
func TestFormatULID_Text(t *testing.T) {
0 commit comments