From ec5a306bd4e8f839e5323aecb82a808f6acfb84f Mon Sep 17 00:00:00 2001 From: Nick Snyder Date: Thu, 19 Oct 2023 15:42:03 -0700 Subject: [PATCH] Fix ignore path for resolver.go (#63) resolver.go was moved in https://github.com/bufbuild/protovalidate-go/pull/59 but this ignore path didn't get updated so lint started failing. This fixes that so lint is passing again. --- .golangci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.golangci.yml b/.golangci.yml index b6f1c43..27dff33 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -78,7 +78,7 @@ issues: - path: internal/constraints/lookups.go linters: - gochecknoglobals - - path: internal/evaluator/resolver.go + - path: resolver/resolver.go linters: # uses deprecated fields on protoimpl.ExtensionInfo but its the only way - staticcheck