github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/enumNamesUpperCamelCase/upperCamelCase.proto (about) 1 syntax = "proto3"; 2 3 enum Enum { 4 option allow_alias = true; 5 UNKNOWN = 0; 6 STARTED = 1; 7 RUNNING = 2 [(custom_option) = "hello world"]; 8 } 9 10 enum EnumAllowingAlias { 11 option allow_alias = true; 12 UNKNOWN = 0; 13 STARTED = 1; 14 RUNNING = 2 [(custom_option) = "hello world"]; 15 } 16 17 enum EnumAllowing { 18 option allow_alias = true; 19 UNKNOWN = 0; 20 STARTED = 1; 21 RUNNING = 2 [(custom_option) = "hello world"]; 22 }