From e08d9175a21d9f013670dde3d946658164344f65 Mon Sep 17 00:00:00 2001 From: Andrew Hare Date: Sun, 5 May 2024 12:17:08 -0600 Subject: [PATCH] fix: Linter ignore --- docs/proto/provider.md | 2 +- go/provider/v1/service.pb.go | 4 ++++ proto/provider/akash/provider/v1/service.proto | 2 ++ ts/src/generated/akash/provider/v1/service.ts | 6 +++++- 4 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/proto/provider.md b/docs/proto/provider.md index e180b78a..b570b3ac 100644 --- a/docs/proto/provider.md +++ b/docs/proto/provider.md @@ -780,7 +780,7 @@ | `StreamStatus` | [.google.protobuf.Empty](#google.protobuf.Empty) | [Status](#akash.provider.v1.Status) stream | Status defines a method to stream provider state buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE buf:lint:ignore RPC_RESPONSE_STANDARD_NAME | | | `GetVersion` | [.google.protobuf.Empty](#google.protobuf.Empty) | [GetVersionResponse](#akash.provider.v1.GetVersionResponse) | GetVersion returns version information about the provider | | | `Validate` | [ValidateRequest](#akash.provider.v1.ValidateRequest) | [ValidateResponse](#akash.provider.v1.ValidateResponse) | Validate checks if provider will bid on given groupspec | | - | `WIBOY` | [ValidateRequest](#akash.provider.v1.ValidateRequest) | [ValidateResponse](#akash.provider.v1.ValidateResponse) | WIBOY (will I bid on you) is an alias for Validate | | + | `WIBOY` | [ValidateRequest](#akash.provider.v1.ValidateRequest) | [ValidateResponse](#akash.provider.v1.ValidateResponse) | WIBOY (will I bid on you) is an alias for Validate buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE buf:lint:ignore RPC_RESPONSE_STANDARD_NAME | | diff --git a/go/provider/v1/service.pb.go b/go/provider/v1/service.pb.go index cc18a25c..b891afbf 100644 --- a/go/provider/v1/service.pb.go +++ b/go/provider/v1/service.pb.go @@ -559,6 +559,8 @@ type ProviderRPCClient interface { // Validate checks if provider will bid on given groupspec Validate(ctx context.Context, in *ValidateRequest, opts ...grpc.CallOption) (*ValidateResponse, error) // WIBOY (will I bid on you) is an alias for Validate + // buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE + // buf:lint:ignore RPC_RESPONSE_STANDARD_NAME WIBOY(ctx context.Context, in *ValidateRequest, opts ...grpc.CallOption) (*ValidateResponse, error) } @@ -653,6 +655,8 @@ type ProviderRPCServer interface { // Validate checks if provider will bid on given groupspec Validate(context.Context, *ValidateRequest) (*ValidateResponse, error) // WIBOY (will I bid on you) is an alias for Validate + // buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE + // buf:lint:ignore RPC_RESPONSE_STANDARD_NAME WIBOY(context.Context, *ValidateRequest) (*ValidateResponse, error) } diff --git a/proto/provider/akash/provider/v1/service.proto b/proto/provider/akash/provider/v1/service.proto index 7435c29f..e3e4e45a 100644 --- a/proto/provider/akash/provider/v1/service.proto +++ b/proto/provider/akash/provider/v1/service.proto @@ -36,6 +36,8 @@ service ProviderRPC { rpc Validate(ValidateRequest) returns (ValidateResponse); // WIBOY (will I bid on you) is an alias for Validate + // buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE + // buf:lint:ignore RPC_RESPONSE_STANDARD_NAME rpc WIBOY(ValidateRequest) returns (ValidateResponse); } diff --git a/ts/src/generated/akash/provider/v1/service.ts b/ts/src/generated/akash/provider/v1/service.ts index 45925d40..ea5b42fd 100644 --- a/ts/src/generated/akash/provider/v1/service.ts +++ b/ts/src/generated/akash/provider/v1/service.ts @@ -853,7 +853,11 @@ export interface ProviderRPC { GetVersion(request: Empty): Promise; /** Validate checks if provider will bid on given groupspec */ Validate(request: ValidateRequest): Promise; - /** WIBOY (will I bid on you) is an alias for Validate */ + /** + * WIBOY (will I bid on you) is an alias for Validate + * buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE + * buf:lint:ignore RPC_RESPONSE_STANDARD_NAME + */ WIBOY(request: ValidateRequest): Promise; }