github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/rpcNamesUpperCamelCase/disable_this.proto (about)

     1  syntax = "proto3";
     2  
     3  service SearchApi {
     4      rpc search (SearchRequest) returns (SearchResponse) {}; // protolint:disable:this RPC_NAMES_UPPER_CAMEL_CASE
     5  };
     6  
     7  service SearchLocationApi {
     8      rpc Search_location_primary (SearchRequest2) returns (SearchResponse2) {}; // protolint:disable:this RPC_NAMES_UPPER_CAMEL_CASE
     9      rpc    searchLocation    (SearchRequest3) returns (SearchResponse3) {}; // protolint:disable:this RPC_NAMES_UPPER_CAMEL_CASE
    10  };