[clang-format] Stop indenting the closing brace for the initializer (#197590)
new
```C++
SomeStruct //
s = {
"xxxxxxxxxxxxx",
};
```
old
```C++
SomeStruct //
s = {
"xxxxxxxxxxxxx",
};
```
See the comment. https://github.com/llvm/llvm-project/pull/192299#issuecomment-4414273071