.clang-format: tweak a bit more

This commit is contained in:
Dirk-Jan C. Binnema 2021-10-21 21:46:28 +03:00
parent 0303f5d931
commit 90114fd349
1 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,5 @@
---
AccessModifierOffset: -8
AlignAfterOpenBracket: 'Align'
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'true'
@ -7,18 +8,23 @@ AlignOperands: 'true'
AlignTrailingComments: 'true'
AllowAllArgumentsOnNextLine: 'false'
AllowAllParametersOfDeclarationOnNextLine: 'false'
AllowShortBlocksOnASingleLine: 'false'
AllowShortBlocksOnASingleLine: 'Empty'
AllowShortCaseLabelsOnASingleLine: 'true'
AllowShortFunctionsOnASingleLine: 'Inline'
AllowShortIfStatementsOnASingleLine: 'false'
AllowShortLambdasOnASingleLine: 'All'
AlwaysBreakAfterReturnType: 'TopLevelDefinitions'
BraceWrapping:
BeforeLambdaBody: 'false'
BinPackArguments: 'false'
BinPackParameters: 'false'
BreakBeforeBraces: 'WebKit'
ColumnLimit: '100'
Cpp11BracedListStyle: 'true'
DerivePointerAlignment: 'false'
IndentCaseLabels: 'false'
IndentWidth: '8'
IndentAccessModifiers: 'false'
KeepEmptyLinesAtTheStartOfBlocks: 'false'
Language: 'Cpp'
MaxEmptyLinesToKeep: '1'