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. --- .golangci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to '.golangci.yml') diff --git a/.golangci.yml b/.golangci.yml index 3b311bff1..135435c1b 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -98,17 +98,15 @@ issues: exclude: - "exported .* should have comment" - "comment on .* should be of the form" - - "declaration of \"err\" shadows" - - "should not use ALL_CAPS in Go names" - "at least one file in a package should have a package comment" - - "methods on the same type should have the same receiver name" - - "assigning the result of this type assertion to a variable" exclude-rules: - path: (pkg/csource/generated.go|pkg/report/linux.go|pkg/build/linux_generated.go) linters: - lll - path: (sys/.*/init.*|sys/targets/common.go) - text: "don't use ALL_CAPS in Go names" + text: "don't use ALL_CAPS in Go names|should not use ALL_CAPS in Go names" + - path: (prog/.*|pkg/ast/.*) + text: "methods on the same type should have the same receiver name" # TODO: this is bad, need to fix and remove the suppression. - path: (pkg/report/(net|open)bsd.*) linters: -- cgit mrf-deployment