Browse Source

remove nolintlint

pull/10/head
andrey 11 months ago
parent
commit
326a9b60c1
  1. 1
      .golangci.yml
  2. 6
      field/value.go

1
.golangci.yml

@ -52,6 +52,7 @@ linters:
- maligned
- depguard # need configure
- nolintlint # use with space
issues:
# Excluding configuration per-path, per-linter, per-text and per-source

6
field/value.go

@ -1,4 +1,4 @@
//nolint: exhaustruct
// nolint: exhaustruct
package field
import (
@ -504,7 +504,7 @@ func (v Value) append(dst []byte) []byte {
}
}
//nolint: gocyclo,cyclop
// nolint: gocyclo,cyclop
func (v Value) Any() any {
switch v.Kind {
case KindAny, KindBinary:
@ -542,7 +542,7 @@ func (v Value) Any() any {
return v.any
}
//nolint: forcetypeassert
// nolint: forcetypeassert
func (v Value) AsString() string {
if v.Kind != KindString {
return ""

Loading…
Cancel
Save