Hi,
I wanted to understand what options/configs do we have while using Google Proto Js compiler for styling enums. I am facing a problem that all my enum value names get converted to uppercase after running through the compiler.
Right now our proto definition for a particular case looks like this
option java_package = "com.packageName.proto.device";-----------------------------------------------------------------------
The compiled js code looks something like this
var jspb = require('google-protobuf');As I understand, the style guide suggests enum value names to be defined with CAPITALS, but we don't want to do that as it will corrupt our existing data and/or reports.
Would appreciate if someone could point out a way to enforce the existing styling here during compilation.
Thanks