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 8c5987e commit bff753bCopy full SHA for bff753b
.golangci.yml
@@ -2,6 +2,7 @@ run:
2
tests: false
3
skip-dirs:
4
- contrib
5
+ - sim
6
7
linters-settings:
8
lll:
z/allocator.go
@@ -57,7 +57,7 @@ func init() {
57
58
// Set up a unique Ref per process.
59
rand.Seed(time.Now().UnixNano())
60
- allocRef = uint64(rand.Int63n(1<<16)) << 48
+ allocRef = uint64(rand.Int63n(1<<16)) << 48 //nolint:gosec // cryptographic precision not needed
61
62
calculatedLog2 = make([]int, 1025)
63
for i := 1; i <= 1024; i++ {
0 commit comments