github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/repeatedFieldNamesPluralized/disable_next.proto (about) 1 syntax = "proto3"; 2 3 message first_outer { 4 // inner is an inner message. 5 message first_inner { // Level 2 6 // protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED 7 repeated inner innerMessage = 2; 8 } 9 // protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED 10 repeated string My_map = 4; 11 group Result = 8 { 12 // protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED 13 repeated string url = 9; 14 int64 amount = 10; 15 } 16 } 17 18 message second_outer { 19 // protolint:disable:next REPEATED_FIELD_NAMES_PLURALIZED 20 repeated google.protobuf.Empty OneofEmpty = 20; 21 string oneof_String = 21; 22 }