Skip to content

Commit

Permalink
fix lint unused false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
apenella committed Apr 20, 2024
1 parent aad466d commit 6c4e7aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ help: ## Lists available targets
@grep -E '^[a-zA-Z1-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[1;32m%-20s\033[0m %s\n", $$1, $$2}'
@echo

static-analysis: vet ## Executes all static analysis tools
static-analysis: vet golangci-lint ## Executes all static analysis tools
test: unit-test

vet: ## Executes the go vet
Expand Down
2 changes: 1 addition & 1 deletion mocks/mockExitCodeErr.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package mocks

type MockExitCodeErr struct {
error
error //nolint:golint,unused
Code int
Message string
}
Expand Down

0 comments on commit 6c4e7aa

Please sign in to comment.