Reproducer: ``` export module a; export { int aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(int xxxxxxxxxxxxxxxxxxxxxxx, int xxxxxxxxxxxxxxx); } ``` after format we got: ``` export module a; export { int aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa( int xxxxxxxxxxxxxxxxxxxxxxx, int xxxxxxxxxxxxxxx); } ``` But we don't want the indentation. Or we hope we can control the behavior by an option like `NamespaceIndentation` (https://clang.llvm.org/docs/ClangFormatStyleOptions.html#namespaceindentation) --- Expected output: ``` export module a; export { int aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa( int xxxxxxxxxxxxxxxxxxxxxxx, int xxxxxxxxxxxxxxx); } ```