github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/indentrule/incorrect_issue_99.proto (about) 1 syntax = "proto3"; 2 3 package test; 4 5 message Test { 6 enum State { 7 UNKNOWN_STATE = 0; 8 CLEAR = 1; 9 PULLED = 2; 10 STARTED = 3; 11 }; 12 } 13 14 message TestResponse { 15 } 16 17 service RunnerService { 18 rpc ReceiveTest (Test) returns (TestResponse); 19 }