One recurring diff chunk that seems to come up is one like: - enum { NumInlineContentCommentBits = NumCommentBits + 1 }; + enum { + NumInlineContentCommentBits = NumCommentBits + 1 + }; It would be nice if clang-format formatted the enum on one line (or had an option to do so).
Now, how to make it other way around (to list every item on a separate line)?
BraceWrapping: AfterEnum: true also puts { on the next line, so not quite the solution...