diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-06-04 22:35:04 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-06-05 12:23:19 +0200 |
| commit | 2fcb2b5c16e21d2a94741e19bbe7443d88127273 (patch) | |
| tree | 13352ecf78a58fc120966ef47a6fc35a10f42551 /pkg/ifuzz/decode.go | |
| parent | e3d77cf2a3cefdc0b6781c32ca3b878568a5856b (diff) | |
.golangci.yml: enable gocognit checker
Finds too complex functions.
Similar to gocyclo, but uses somewhat different metric.
Diffstat (limited to 'pkg/ifuzz/decode.go')
| -rw-r--r-- | pkg/ifuzz/decode.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/ifuzz/decode.go b/pkg/ifuzz/decode.go index b16c9f0bd..327fad82e 100644 --- a/pkg/ifuzz/decode.go +++ b/pkg/ifuzz/decode.go @@ -10,7 +10,7 @@ import ( // Decode decodes instruction length for the given mode. // It can have falsely decode incorrect instructions, // but should not fail to decode correct instructions. -// nolint: gocyclo, nestif +// nolint: gocyclo, nestif, gocognit func Decode(mode int, text []byte) (int, error) { if len(text) == 0 { return 0, fmt.Errorf("zero-length instruction") |
