From 2b2857bd2191458a131689502224abfe9cdd7a4a Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 4 Jun 2020 23:07:55 +0200 Subject: .golangci.yml: enable funlen checker Checks for too long functions (based on lines and statements). --- prog/encodingexec_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'prog/encodingexec_test.go') diff --git a/prog/encodingexec_test.go b/prog/encodingexec_test.go index 7114ab30f..141cf5dda 100644 --- a/prog/encodingexec_test.go +++ b/prog/encodingexec_test.go @@ -28,6 +28,7 @@ func TestSerializeForExecRandom(t *testing.T) { } } +// nolint: funlen func TestSerializeForExec(t *testing.T) { target := initTargetTest(t, "test", "64") var ( -- cgit mrf-deployment