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" )