From 6b9ce1dda472a5f2086e542ae6ee0b6660e088bb Mon Sep 17 00:00:00 2001 From: Quinten Date: Thu, 9 Oct 2025 16:26:00 +0200 Subject: [PATCH] fix: add missing newline and ensure binary operators are placed at the beginning of the line --- .clang-format | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index be4867f..a093fa6 100644 --- a/.clang-format +++ b/.clang-format @@ -38,4 +38,7 @@ AllowShortBlocksOnASingleLine: Empty AllowShortCaseLabelsOnASingleLine: true # Add empty line between function definitions -SeparateDefinitionBlocks: Always \ No newline at end of file +SeparateDefinitionBlocks: Always + +# Place binary operators at the beginning of the line +BreakBeforeBinaryOperators: All \ No newline at end of file