Should the equals sign be alined on protocol buffers? I am having a huge discussion with a colleague and we can't get to decide on what's the best practice.
message foobar {
optional bool var_one_short = 1;
optional bool var_two_looooooooong_name = 2;
optional bool another_var = 3;
}
vs
message foobar {
optional bool var_one_short = 1;
optional bool var_two_looooooooong_name = 2;
optional bool another_var = 3;
}