.clang-format: update

This commit is contained in:
Dirk-Jan C. Binnema 2021-10-16 11:44:53 +03:00
parent 49637dbc3a
commit 8699123684
1 changed files with 9 additions and 9 deletions

View File

@ -1,20 +1,20 @@
---
AlignAfterOpenBracket: 'Align'
AlignConsecutiveAssignments: 'false'
AlignConsecutiveDeclarations: 'false'
AlignConsecutiveAssignments: 'true'
AlignConsecutiveDeclarations: 'true'
AlignConsecutiveMacros: 'true'
AlignOperands: 'true'
AlignTrailingComments: 'true'
AllowAllArgumentsOnNextLine: 'false'
AllowAllParametersOfDeclarationOnNextLine: 'false'
AllowShortBlocksOnASingleLine: 'false'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortCaseLabelsOnASingleLine: 'true'
AllowShortFunctionsOnASingleLine: 'Inline'
AllowShortIfStatementsOnASingleLine: 'false'
AlwaysBreakAfterReturnType: 'All'
BinPackParameters: 'false'
AlwaysBreakAfterReturnType: 'TopLevelDefinitions'
BinPackArguments: 'false'
BreakBeforeBraces: 'Linux'
BinPackParameters: 'false'
BreakBeforeBraces: 'WebKit'
ColumnLimit: '100'
DerivePointerAlignment: 'false'
IndentCaseLabels: 'false'
@ -22,7 +22,9 @@ IndentWidth: '8'
KeepEmptyLinesAtTheStartOfBlocks: 'false'
Language: 'Cpp'
MaxEmptyLinesToKeep: '1'
PointerAlignment: 'Right'
PenaltyBreakAssignment: '3'
PenaltyBreakBeforeFirstCallParameter: '15'
PointerAlignment: 'Left'
SortIncludes: 'false'
SpaceAfterCStyleCast: 'false'
SpaceBeforeAssignmentOperators : 'true'
@ -31,8 +33,6 @@ SpaceInEmptyParentheses: 'false'
SpacesInSquareBrackets: 'false'
TabWidth: '8'
UseTab: 'AlignWithSpaces'
PenaltyBreakAssignment: '3'
PenaltyBreakBeforeFirstCallParameter: '15'
# Local Variables:
# mode: yaml