github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/repeatedFieldNamesPluralized/disable_this.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 innerMessage = 2; // protolint:disable:this REPEATED_FIELD_NAMES_PLURALIZED 7 } 8 repeated string My_map = 4; // protolint:disable:this REPEATED_FIELD_NAMES_PLURALIZED 9 group Result = 8 { 10 repeated string url = 9; // protolint:disable:this REPEATED_FIELD_NAMES_PLURALIZED 11 int64 amount = 10; 12 } 13 } 14 15 message second_outer { 16 repeated google.protobuf.Empty OneofEmpty = 20; // protolint:disable:this REPEATED_FIELD_NAMES_PLURALIZED 17 string oneof_String = 21; 18 }