github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/messageNamesUpperCamelCase/disable_next.proto (about)

     1  syntax = "proto3";
     2  
     3  // protolint:disable:next MESSAGE_NAMES_UPPER_CAMEL_CASE
     4  message first_outer {
     5      option (my_option).a = true;
     6      // inner is an inner message.
     7      // protolint:disable:next MESSAGE_NAMES_UPPER_CAMEL_CASE
     8      message first_inner {   // Level 2
     9                        int64 ival = 1;
    10      }
    11      // protolint:disable:next MESSAGE_NAMES_UPPER_CAMEL_CASE
    12      message accountForAdmin {}
    13      // protolint:disable:next MESSAGE_NAMES_UPPER_CAMEL_CASE
    14      message Special_EndOfSupport {}
    15  }
    16  
    17  // protolint:disable:next MESSAGE_NAMES_UPPER_CAMEL_CASE
    18  message second {
    19      // protolint:disable:next MESSAGE_NAMES_UPPER_CAMEL_CASE
    20      message account_for_admin {}
    21  }