From 1ac07a4930a3fbbefa4b8a2d51c856ae1a8e0929 Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Sat, 27 Sep 2025 21:56:48 +0100 Subject: [PATCH] clang-format: Add options for newline at EOF and empty lines --- .clang-format | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.clang-format b/.clang-format index b1a0cccb9..31c61bf58 100644 --- a/.clang-format +++ b/.clang-format @@ -21,8 +21,11 @@ IncludeCategories: Priority: 1 SortPriority: 0 InsertBraces: true +InsertNewlineAtEOF: true KeepEmptyLines: + AtEndOfFile: false AtStartOfBlock: false + AtStartOfFile: false LineEnding: LF PackConstructorInitializers: Never PointerAlignment: Left