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