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

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