Protobuf keywords may appear in a field option, e.g. https://github.com/envoyproxy/protoc-gen-validate/blob/main/README.md#repeated. When formatting a file with such field option, `clang-format` insists on inserting a space after the "keyword". Example file: ```proto syntax = "proto3"; package proto.test; message A { int32 a = 1; } message B { repeated A a = 1 [(annotation).int32.repeated.required.optional.oneof.test = true]; } ``` Output of `clang-format --style=Google`: ```proto syntax = "proto3"; package proto.test; message A { int32 a = 1; } message B { repeated A a = 1 [(annotation).int32.repeated .required .optional .oneof.test = true]; } ``` Expected output: No space should be inserted after "keywords" in a field option.