1--- 2AccessModifierOffset: -1 3AlignEscapedNewlinesLeft: true 4AlignTrailingComments: false 5AllowAllParametersOfDeclarationOnNextLine: true 6AllowShortIfStatementsOnASingleLine: false 7AllowShortLoopsOnASingleLine: false 8AlwaysBreakBeforeMultilineStrings: true 9AlwaysBreakTemplateDeclarations: true 10BinPackArguments: false 11BinPackParameters: false 12BreakBeforeBinaryOperators: false 13BreakBeforeBraces: Attach 14BreakConstructorInitializersBeforeComma: false 15ColumnLimit: 80 16ConstructorInitializerAllOnOneLineOrOnePerLine: true 17ConstructorInitializerIndentWidth: 4 18ContinuationIndentWidth: 4 19Cpp11BracedListStyle: true 20DerivePointerAlignment: false 21ExperimentalAutoDetectBinPacking: true 22IndentCaseLabels: false 23IndentFunctionDeclarationAfterType: false 24IndentWidth: 2 25MaxEmptyLinesToKeep: 1 26NamespaceIndentation: None 27ObjCSpaceBeforeProtocolList: false 28PenaltyBreakBeforeFirstCallParameter: 10 29PenaltyBreakComment: 60 30PenaltyBreakFirstLessLess: 20 31PenaltyBreakString: 1000 32PenaltyExcessCharacter: 1000000 33PenaltyReturnTypeOnItsOwnLine: 200 34PointerAlignment: Right 35SpaceAfterControlStatementKeyword: true 36SpaceBeforeAssignmentOperators: true 37SpaceInEmptyParentheses: false 38SpacesBeforeTrailingComments: 1 39SpacesInAngles: false 40SpacesInCStyleCastParentheses: false 41SpacesInParentheses: false 42Standard: Cpp11 43TabWidth: 8 44UseTab: Never 45... 46