github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/enumNamesUpperCamelCase/invalid.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 Enum_allowing_alias { 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 }