This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-core.git
commit 57b65815535cd83d02781fc005fbeb2abbb04c77 Author: Szymon Czapracki <szymon.czapra...@codecoup.pl> AuthorDate: Fri Jun 13 12:54:40 2025 +0200 ci: Update .clang-format to properly parse enum brace-wrapping This change prevents `clang-format` from enforcing a newline after enum declarations --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 3b8000b20..60a879a06 100644 --- a/.clang-format +++ b/.clang-format @@ -15,7 +15,7 @@ BreakBeforeBraces: Custom BraceWrapping: AfterClass: true AfterControlStatement: false - AfterEnum: true + AfterEnum: false AfterFunction: true AfterNamespace: true AfterStruct: false