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