2018-05-21 14:28:15 +00:00
|
|
|
BasedOnStyle: Google
|
2020-04-07 18:11:09 +00:00
|
|
|
AlignAfterOpenBracket: AlwaysBreak
|
2020-04-03 20:07:52 +00:00
|
|
|
AlignConsecutiveAssignments: 'false'
|
2018-05-21 14:28:15 +00:00
|
|
|
AlignConsecutiveDeclarations: 'false'
|
|
|
|
AlignEscapedNewlinesLeft: 'true'
|
|
|
|
AlignOperands: 'false'
|
|
|
|
AlignTrailingComments: 'true'
|
|
|
|
AllowShortBlocksOnASingleLine: 'false'
|
|
|
|
AllowShortCaseLabelsOnASingleLine: 'false'
|
|
|
|
AllowShortFunctionsOnASingleLine: None
|
|
|
|
AllowShortIfStatementsOnASingleLine: 'false'
|
|
|
|
AllowShortLoopsOnASingleLine: 'false'
|
2018-05-21 16:01:31 +00:00
|
|
|
AlwaysBreakAfterDefinitionReturnType: All
|
|
|
|
AlwaysBreakAfterReturnType: All
|
2018-05-21 14:28:15 +00:00
|
|
|
AlwaysBreakTemplateDeclarations: 'true'
|
|
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
|
|
BreakBeforeBraces: Allman
|
|
|
|
BreakBeforeTernaryOperators: 'true'
|
|
|
|
BreakConstructorInitializersBeforeComma: 'true'
|
|
|
|
Cpp11BracedListStyle: 'true'
|
|
|
|
KeepEmptyLinesAtTheStartOfBlocks: 'false'
|
|
|
|
NamespaceIndentation: All
|
|
|
|
PenaltyBreakString: '3'
|
2020-04-03 20:07:52 +00:00
|
|
|
SpaceBeforeParens: ControlStatements
|
|
|
|
SpacesInAngles: 'false'
|
2018-05-21 14:28:15 +00:00
|
|
|
SpacesInContainerLiterals: 'false'
|
|
|
|
SpacesInParentheses: 'false'
|
|
|
|
SpacesInSquareBrackets: 'false'
|
|
|
|
Standard: Cpp11
|
|
|
|
UseTab: Never
|
2020-04-03 20:07:52 +00:00
|
|
|
SortIncludes: false
|
|
|
|
ColumnLimit: 100
|
|
|
|
|
2020-04-07 18:11:51 +00:00
|
|
|
# treat pointers and reference declarations as if part of the type
|
|
|
|
DerivePointerAlignment: false
|
|
|
|
PointerAlignment: Left
|
|
|
|
|
2020-04-03 20:07:52 +00:00
|
|
|
# when wrapping function calls/declarations, force each parameter to have its own line
|
2020-04-07 18:11:09 +00:00
|
|
|
BinPackParameters: 'false'
|
|
|
|
BinPackArguments: 'false'
|