github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/indentrule/incorrect_enum.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 }