diff options
Diffstat (limited to '.clang-format')
-rw-r--r-- | .clang-format | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.clang-format b/.clang-format index bda6336..3130d2e 100644 --- a/.clang-format +++ b/.clang-format @@ -23,7 +23,7 @@ BraceWrapping: AfterUnion: false AfterExternBlock: false BeforeCatch: false - BeforeElse: false + BeforeElse: true IndentBraces: false SplitEmptyFunction: true SplitEmptyRecord: true @@ -31,7 +31,7 @@ BraceWrapping: BreakBeforeBinaryOperators: NonAssignment BreakBeforeBraces: Custom BreakBeforeTernaryOperators: true -ColumnLimit: 80 +ColumnLimit: 100 ContinuationIndentWidth: 8 DeriveLineEnding: true IndentCaseBlocks: false @@ -61,4 +61,4 @@ UseTab: Always # Taken from git's rules (Except PenaltyBreakAssignment) PenaltyBreakAssignment: 100 -PenaltyExcessCharacter: 100
\ No newline at end of file +PenaltyExcessCharacter: 100 |