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

     1  syntax = "proto3";
     2  
     3  service searchapi { // protolint:disable:this SERVICE_NAMES_UPPER_CAMEL_CASE
     4      rpc search (SearchRequest) returns (SearchResponse) {};
     5  };
     6  
     7  service Search_location_api { // protolint:disable:this SERVICE_NAMES_UPPER_CAMEL_CASE
     8      rpc Search_location_primary (SearchRequest2) returns (SearchResponse2) {};
     9      rpc    searchLocation    (SearchRequest3) returns (SearchResponse3) {};
    10  };
    11  
    12      service     searchApi { // protolint:disable:this SERVICE_NAMES_UPPER_CAMEL_CASE
    13      rpc search (SearchRequest) returns (SearchResponse) {};
    14  };