From 0e2e52a87ac286671583ffbcbf4e27e85e2a2fef Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 6 Jun 2020 07:40:04 +0200 Subject: .golangci.yml: reduce scope of suppressions Reduce scope of some suppressions (some are violated only in some packages). Remove some outdated, fix and enable the type switch warning. --- pkg/compiler/consts.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pkg') diff --git a/pkg/compiler/consts.go b/pkg/compiler/consts.go index 7b9c89901..e57d599cb 100644 --- a/pkg/compiler/consts.go +++ b/pkg/compiler/consts.go @@ -201,10 +201,9 @@ func (comp *compiler) patchConsts(consts0 map[string]uint64) { consts[name] = val } for _, decl := range comp.desc.Nodes { - switch decl.(type) { + switch n := decl.(type) { case *ast.IntFlags: // Unsupported flag values are dropped. - n := decl.(*ast.IntFlags) var values []*ast.Int for _, v := range n.Values { if comp.patchIntConst(v, consts, nil) { -- cgit mrf-deployment