clang-format: tweak
Don't set the column-limit, since clang-format interprets that as "the length any line should aspire to" rather than "the length no line shall pass". It shouldn't mangle shorter lines.
This commit is contained in:
@ -15,11 +15,11 @@ AllowShortIfStatementsOnASingleLine: 'false'
|
||||
AllowShortLambdasOnASingleLine: 'All'
|
||||
AlwaysBreakAfterReturnType: 'TopLevelDefinitions'
|
||||
BraceWrapping:
|
||||
BeforeLambdaBody: 'false'
|
||||
# BeforeLambdaBody: 'false'
|
||||
BinPackArguments: 'false'
|
||||
BinPackParameters: 'false'
|
||||
BreakBeforeBraces: 'WebKit'
|
||||
ColumnLimit: '100'
|
||||
ColumnLimit: '0'
|
||||
Cpp11BracedListStyle: 'true'
|
||||
DerivePointerAlignment: 'false'
|
||||
IndentCaseLabels: 'false'
|
||||
|
||||
Reference in New Issue
Block a user