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