mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
BasedOnStyle: Google
|
|
AlignAfterOpenBracket: AlwaysBreak
|
|
AlignConsecutiveAssignments: 'false'
|
|
AlignConsecutiveDeclarations: 'false'
|
|
AlignEscapedNewlinesLeft: 'true'
|
|
AlignOperands: 'false'
|
|
AlignTrailingComments: 'true'
|
|
AllowShortBlocksOnASingleLine: 'false'
|
|
AllowShortCaseLabelsOnASingleLine: 'false'
|
|
AllowShortFunctionsOnASingleLine: None
|
|
AllowShortIfStatementsOnASingleLine: 'false'
|
|
AllowShortLoopsOnASingleLine: 'false'
|
|
AlwaysBreakAfterDefinitionReturnType: All
|
|
AlwaysBreakAfterReturnType: All
|
|
AlwaysBreakTemplateDeclarations: 'true'
|
|
BreakBeforeBinaryOperators: NonAssignment
|
|
BreakBeforeBraces: Allman
|
|
BreakBeforeTernaryOperators: 'true'
|
|
BreakConstructorInitializersBeforeComma: 'true'
|
|
Cpp11BracedListStyle: 'true'
|
|
KeepEmptyLinesAtTheStartOfBlocks: 'false'
|
|
NamespaceIndentation: All
|
|
PenaltyBreakString: '3'
|
|
SpaceBeforeParens: ControlStatements
|
|
SpacesInAngles: 'false'
|
|
SpacesInContainerLiterals: 'false'
|
|
SpacesInParentheses: 'false'
|
|
SpacesInSquareBrackets: 'false'
|
|
Standard: Cpp11
|
|
UseTab: Never
|
|
SortIncludes: false
|
|
ColumnLimit: 100
|
|
|
|
# treat pointers and reference declarations as if part of the type
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
|
|
# when wrapping function calls/declarations, force each parameter to have its own line
|
|
BinPackParameters: 'false'
|
|
BinPackArguments: 'false'
|