buf
buf copied to clipboard
Special-case (buf.validate.message).oneof for formatting
- If
len(fields) < 6, I want all fields to appear on one line. - If there is only
fieldsand norequired, I want the whole thing on one line. - If there is
fieldsandrequired, andlen(fields) < 6, I wantfieldson one line,requiredon another. - Otherwise,
len(fields) >=6, and do the default formatting.
Examples:
option (buf.validate.message).oneof = { fields: ["id", "names"] };
option (buf.validate.message).oneof = {
fields: ["id", "names"]
required: true
};