github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_example/proto/issue_111/multipleFixersApplicable.proto (about)

     1  syntax = "proto3";
     2  enum enumAllowingAlias {
     3      UNKNOWN = 0;
     4          option allow_alias = true;
     5      STARTED = 1;
     6          RUNNING = 2 [(custom_option) = "hello world"];
     7  }
     8  
     9  enum enumAllowingAlias2 {
    10      UNKNOWN = 0;
    11      option allow_alias = true;
    12      STARTED = 1;
    13      RUNNING = 2 [(custom_option) = "hello world"];
    14  }