Blame .clang-format

Packit 12c978
---
Packit 12c978
# BasedOnStyle:  Google
Packit 12c978
AccessModifierOffset: -1
Packit 12c978
ConstructorInitializerIndentWidth: 4
Packit 12c978
AlignEscapedNewlinesLeft: true
Packit 12c978
AlignTrailingComments: true
Packit 12c978
AllowAllParametersOfDeclarationOnNextLine: true
Packit 12c978
AllowShortIfStatementsOnASingleLine: true
Packit 12c978
AllowShortLoopsOnASingleLine: true
Packit 12c978
AlwaysBreakTemplateDeclarations: true
Packit 12c978
AlwaysBreakBeforeMultilineStrings: true
Packit 12c978
BreakBeforeBinaryOperators: false
Packit 12c978
BreakBeforeTernaryOperators: true
Packit 12c978
BreakConstructorInitializersBeforeComma: false
Packit 12c978
BinPackParameters: true
Packit 12c978
ColumnLimit:     80
Packit 12c978
ConstructorInitializerAllOnOneLineOrOnePerLine: true
Packit 12c978
DerivePointerBinding: true
Packit 12c978
ExperimentalAutoDetectBinPacking: false
Packit 12c978
IndentCaseLabels: true
Packit 12c978
MaxEmptyLinesToKeep: 1
Packit 12c978
NamespaceIndentation: None
Packit 12c978
ObjCSpaceBeforeProtocolList: false
Packit 12c978
PenaltyBreakBeforeFirstCallParameter: 1
Packit 12c978
PenaltyBreakComment: 60
Packit 12c978
PenaltyBreakString: 1000
Packit 12c978
PenaltyBreakFirstLessLess: 120
Packit 12c978
PenaltyExcessCharacter: 1000000
Packit 12c978
PenaltyReturnTypeOnItsOwnLine: 200
Packit 12c978
PointerBindsToType: true
Packit 12c978
SpacesBeforeTrailingComments: 2
Packit 12c978
Cpp11BracedListStyle: true
Packit 12c978
Standard:        Auto
Packit 12c978
IndentWidth:     2
Packit 12c978
TabWidth:        8
Packit 12c978
UseTab:          Never
Packit 12c978
BreakBeforeBraces: Attach
Packit 12c978
IndentFunctionDeclarationAfterType: true
Packit 12c978
SpacesInParentheses: false
Packit 12c978
SpacesInAngles:  false
Packit 12c978
SpaceInEmptyParentheses: false
Packit 12c978
SpacesInCStyleCastParentheses: false
Packit 12c978
SpaceAfterControlStatementKeyword: true
Packit 12c978
SpaceBeforeAssignmentOperators: true
Packit 12c978
ContinuationIndentWidth: 4
Packit 12c978
...
Packit 12c978