fix: add missing newline and ensure binary operators are placed at the beginning of the line

This commit is contained in:
Quinten 2025-10-09 16:26:00 +02:00
parent fb84cd09fa
commit 6b9ce1dda4

View File

@ -38,4 +38,7 @@ AllowShortBlocksOnASingleLine: Empty
AllowShortCaseLabelsOnASingleLine: true
# Add empty line between function definitions
SeparateDefinitionBlocks: Always
SeparateDefinitionBlocks: Always
# Place binary operators at the beginning of the line
BreakBeforeBinaryOperators: All