github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/rpcNamesUpperCamelCase/disable_next.proto (about) 1 syntax = "proto3"; 2 3 service SearchApi { 4 // protolint:disable:next RPC_NAMES_UPPER_CAMEL_CASE 5 rpc search (SearchRequest) returns (SearchResponse) {}; 6 }; 7 8 service SearchLocationApi { 9 // protolint:disable:next RPC_NAMES_UPPER_CAMEL_CASE 10 rpc Search_location_primary (SearchRequest2) returns (SearchResponse2) {}; 11 // protolint:disable:next RPC_NAMES_UPPER_CAMEL_CASE 12 rpc searchLocation (SearchRequest3) returns (SearchResponse3) {}; 13 };