From 37608c29b84073a9b6088e66e250167ca3fb66a9 Mon Sep 17 00:00:00 2001 From: Oliver Sun Date: Thu, 26 Oct 2023 13:16:17 -0400 Subject: [PATCH] break on purpose --- .golangci.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 27dff33..2b54e92 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -53,32 +53,3 @@ linters: - varcheck # abandoned - wrapcheck # don't _always_ need to wrap errors - wsl # over-generous whitespace violates house style -issues: - exclude-rules: - # Loosen requirements on conformance executor - - path: internal/cmd/ - linters: - - forbidigo - - errorlint - # Loosen requirements on tests - - path: _test.go - linters: - - funlen - - varnamelen - - unparam - - gosec - - path: celext/lib.go - linters: - # setting up custom functions/overloads appears duplicative (false positive) - - dupl - # Types are checked internally within CEL. There are bigger issues if its - # type analysis is wrong - - forcetypeassert - # static unexported lookup tables - - path: internal/constraints/lookups.go - linters: - - gochecknoglobals - - path: resolver/resolver.go - linters: - # uses deprecated fields on protoimpl.ExtensionInfo but its the only way - - staticcheck