1--- 2AccessModifierOffset: -8 3AlignAfterOpenBracket: Align 4AlignConsecutiveAssignments: false 5AlignConsecutiveDeclarations: false 6AlignOperands: true 7AlignTrailingComments: false 8AllowAllParametersOfDeclarationOnNextLine: false 9AllowShortBlocksOnASingleLine: false 10AllowShortCaseLabelsOnASingleLine: false 11AllowShortFunctionsOnASingleLine: InlineOnly 12AllowShortIfStatementsOnASingleLine: false 13AllowShortLambdasOnASingleLine: All 14AllowShortLoopsOnASingleLine: false 15AlwaysBreakAfterDefinitionReturnType: None 16AlwaysBreakAfterReturnType: None 17AlwaysBreakBeforeMultilineStrings: false 18BinPackArguments: true 19BinPackParameters: true 20BraceWrapping: 21 AfterClass: true 22 AfterControlStatement: false 23 AfterEnum: false 24 AfterFunction: true 25 AfterNamespace: true 26 AfterStruct: false 27 AfterUnion: false 28 BeforeCatch: false 29 BeforeElse: false 30 IndentBraces: false 31BreakAfterJavaFieldAnnotations: false 32BreakBeforeBinaryOperators: None 33BreakBeforeBraces: Custom 34BreakBeforeTernaryOperators: true 35BreakStringLiterals: false 36ColumnLimit: 0 37CommentPragmas: '^ IWYU pragma:' 38ConstructorInitializerAllOnOneLineOrOnePerLine: false 39ConstructorInitializerIndentWidth: 8 40ContinuationIndentWidth: 8 41Cpp11BracedListStyle: false 42DerivePointerAlignment: false 43DisableFormat: false 44ExperimentalAutoDetectBinPacking: false 45IncludeCategories: 46 - Regex: '.*' 47 Priority: 1 48IncludeIsMainRegex: '(_test)?$' 49IndentCaseLabels: false 50IndentWidth: 8 51IndentWrappedFunctionNames: false 52KeepEmptyLinesAtTheStartOfBlocks: false 53MacroBlockBegin: '' 54MacroBlockEnd: '' 55MaxEmptyLinesToKeep: 1 56NamespaceIndentation: None 57PenaltyBreakBeforeFirstCallParameter: 30 58PenaltyBreakComment: 10 59PenaltyBreakFirstLessLess: 0 60PenaltyBreakString: 10 61PenaltyExcessCharacter: 100 62PenaltyReturnTypeOnItsOwnLine: 60 63PointerAlignment: Left 64ReflowComments: false 65SortIncludes: false 66SpaceAfterCStyleCast: false 67SpaceAfterTemplateKeyword: false 68SpaceBeforeAssignmentOperators: true 69SpaceBeforeParens: ControlStatements 70SpaceInEmptyParentheses: false 71SpacesBeforeTrailingComments: 1 72SpacesInAngles: false 73SpacesInCStyleCastParentheses: false 74SpacesInContainerLiterals: false 75SpacesInParentheses: false 76SpacesInSquareBrackets: false 77Standard: Cpp11 78TabWidth: 8 79UseTab: Always 80