Skip to content

Commit

Permalink
fix: Linter ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Hare committed May 5, 2024
1 parent f082c5c commit e08d917
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/proto/provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | |

<!-- end services -->

Expand Down
4 changes: 4 additions & 0 deletions go/provider/v1/service.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions proto/provider/akash/provider/v1/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
6 changes: 5 additions & 1 deletion ts/src/generated/akash/provider/v1/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,11 @@ export interface ProviderRPC {
GetVersion(request: Empty): Promise<GetVersionResponse>;
/** Validate checks if provider will bid on given groupspec */
Validate(request: ValidateRequest): Promise<ValidateResponse>;
/** 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<ValidateResponse>;
}

Expand Down

0 comments on commit e08d917

Please sign in to comment.