Skip to content

Commit

Permalink
Don't align stuff in clang-format
Browse files Browse the repository at this point in the history
Aligning things leads to crazy whitespace and excess changing of context
lines for no useful purpose.
  • Loading branch information
LegalizeAdulthood committed May 2, 2024
1 parent a5a7da3 commit 196f0ec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
Language: Cpp
# BasedOnStyle: LLVM
AccessModifierOffset: -4
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: Consecutive
AlignAfterOpenBracket: DontAlign
AlignConsecutiveAssignments: None
AlignConsecutiveDeclarations: None
AlignEscapedNewlinesLeft: true
AlignOperands: true
AlignOperands: DontAlign
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
Expand Down Expand Up @@ -89,4 +89,4 @@ SpacesInSquareBrackets: false
Standard: Cpp11
TabWidth: 8
UseTab: Never
...
...

0 comments on commit 196f0ec

Please sign in to comment.