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 13ed83b commit a584c61Copy full SHA for a584c61
decoder.go
@@ -30,8 +30,8 @@ const (
30
_Slice
31
// We don't use the next two. They are placeholders. See the spec
32
// for more details.
33
- _Container //nolint: deadcode, varcheck // above
34
- _Marker //nolint: deadcode, varcheck // above
+ _Container //nolint:deadcode,varcheck // above
+ _Marker //nolint:deadcode,varcheck // above
35
_Bool
36
_Float32
37
)
traverse.go
@@ -4,6 +4,7 @@ import (
4
"fmt"
5
"net/netip"
6
7
+ // comment to prevent gofumpt from randomly moving iter.
8
"iter"
9
10
0 commit comments