From a760b7b781cfe65f8732a9458d80deae6a81da22 Mon Sep 17 00:00:00 2001 From: Matthew Sevey <15232757+MSevey@users.noreply.github.com> Date: Tue, 5 Nov 2024 14:26:42 -0500 Subject: [PATCH] chore: remove unused linters --- .golangci.yml | 7 ++----- proxy/grpc/client.go | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 690483b..b1a17f3 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -4,7 +4,6 @@ run: linters: enable: - - deadcode - errcheck - gofmt - goimports @@ -15,16 +14,14 @@ linters: - misspell - revive - staticcheck - - structcheck - typecheck - unused - - varcheck issues: exclude-use-default: false include: - - EXC0012 # EXC0012 revive: Annoying issue about not having a comment. - - EXC0014 # EXC0014 revive: Annoying issue about not having a comment. + - EXC0012 # EXC0012 revive: Annoying issue about not having a comment. + - EXC0014 # EXC0014 revive: Annoying issue about not having a comment. linters-settings: revive: diff --git a/proxy/grpc/client.go b/proxy/grpc/client.go index dbc6eaa..4c3bc11 100644 --- a/proxy/grpc/client.go +++ b/proxy/grpc/client.go @@ -4,9 +4,9 @@ import ( "context" "time" - "github.com/rollkit/go-execution/types" "google.golang.org/grpc" + "github.com/rollkit/go-execution/types" pb "github.com/rollkit/go-execution/types/pb/execution" )