This is to address a request made in https://bugs.llvm.org/show_bug.cgi?id=43144
Add the ability to not have a space before and after brace (limited to if,else,for,while,do keyword (for now))
if (x){ }else if{ }else{ }
do{ }while(x)
while(x){ }
for(int i=0;i<size();i++){ }
nb. I have not affiliation with the 3sfs project (https://github.com/s3fs-fuse/s3fs-fuse) but noticed on reading this request they don't have a .clang-format file in their Github repo. Perhaps this is because without this feature we can't support their style at all. My aim here is to further the reach of clang-format whilst increasing my knowledge of the workings for clang-format.