Author: Baranov Victor Date: 2025-12-20T11:12:50+03:00 New Revision: ab665f217ac573c473266a2b188b1f5a0eaa946e
URL: https://github.com/llvm/llvm-project/commit/ab665f217ac573c473266a2b188b1f5a0eaa946e DIFF: https://github.com/llvm/llvm-project/commit/ab665f217ac573c473266a2b188b1f5a0eaa946e.diff LOG: [clang-tidy][NFC] Add option 'RemoveBracesLLVM' to clang-format config (#172755) We successfully cleared codebase (https://github.com/llvm/llvm-project/pull/172748, https://github.com/llvm/llvm-project/pull/172751, https://github.com/llvm/llvm-project/pull/172752, https://github.com/llvm/llvm-project/pull/172754) without any significant issues encountered. I propose we add `RemoveBracesLLVM: true` which should _drastically_ reduce churn on code reviews. Added: Modified: clang-tools-extra/clang-tidy/.clang-format Removed: ################################################################################ diff --git a/clang-tools-extra/clang-tidy/.clang-format b/clang-tools-extra/clang-tidy/.clang-format index fe94ed1fa4e81..96fb7ce8fce61 100644 --- a/clang-tools-extra/clang-tidy/.clang-format +++ b/clang-tools-extra/clang-tidy/.clang-format @@ -6,3 +6,4 @@ KeepEmptyLines: AtStartOfFile: false LineEnding: LF QualifierAlignment: Left +RemoveBracesLLVM: true _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
