From 70ec2d422f4ab279fb07fdb3817e6f2fc9c9879b Mon Sep 17 00:00:00 2001 From: David Capello Date: Thu, 12 Dec 2024 20:13:40 -0300 Subject: [PATCH] [clang-format] Enable the alignment of short "case: break;" statements --- .clang-format | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.clang-format b/.clang-format index dd31f8c92..9cea58377 100644 --- a/.clang-format +++ b/.clang-format @@ -31,11 +31,11 @@ AlignConsecutiveMacros: Enabled: true PadOperators: true AlignConsecutiveShortCaseStatements: - AcrossComments: false - AcrossEmptyLines: false - AlignCaseArrows: false + AcrossComments: true + AcrossEmptyLines: true + AlignCaseArrows: true AlignCaseColons: false - Enabled: false + Enabled: true AlignConsecutiveTableGenCondOperatorColons: AcrossComments: false AcrossEmptyLines: false