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

     1  syntax = "proto3";
     2  
     3  enum enum {
     4      option allow_alias = true;
     5      unknown = 0; // protolint:disable:this ENUM_FIELD_NAMES_UPPER_SNAKE_CASE
     6  }
     7  
     8  enum enumAlias {
     9      started_lap = 1; // protolint:disable:this ENUM_FIELD_NAMES_UPPER_SNAKE_CASE
    10      RUNNINGLapUntil = 2 [(custom_option) = "hello world"]; // protolint:disable:this ENUM_FIELD_NAMES_UPPER_SNAKE_CASE
    11  }