From 36ef604bafda5ea80443a76fb71cd973869e60a4 Mon Sep 17 00:00:00 2001 From: Sam Ellicott Date: Sat, 22 May 2021 14:44:59 -0400 Subject: [PATCH] Update clang-format --- .clang-format | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.clang-format b/.clang-format index d72017b..7ca072d 100644 --- a/.clang-format +++ b/.clang-format @@ -15,7 +15,8 @@ MaxEmptyLinesToKeep: 2 PointerAlignment: Right SpaceInEmptyParentheses: 'false' SpacesInAngles: 'true' -SpacesInCStyleCastParentheses: 'true' +# this is just atrocious +#SpacesInCStyleCastParentheses: 'true' SpacesInContainerLiterals: 'true' SpacesInParentheses: 'true' SpacesInSquareBrackets: 'true' @@ -26,9 +27,15 @@ IndentCaseLabels: 'true' # Additions by Sam Ellicott ColumnLimit: 100 -AlignConsecutiveAssignments: true -AlignConsecutiveMacros: true -AlignTrailingComments: true +# From general dislike from Charles and Cai, I am turning these off +#AlignConsecutiveAssignments: true +#AlignConsecutiveMacros: true +#AlignTrailingComments: true +#AlignOperands: AlignAfterOperator +# Turn off alignment +AlignConsecutiveAssignments: false +AlignConsecutiveMacros: false +AlignTrailingComments: false AlignEscapedNewlines: Left AlignOperands: AlignAfterOperator AllowShortBlocksOnASingleLine: Always