1AccessModifierOffset: -2 2AlignEscapedNewlinesLeft: true 3AlignTrailingComments: true 4AllowAllParametersOfDeclarationOnNextLine: false 5AllowShortFunctionsOnASingleLine: false 6AllowShortIfStatementsOnASingleLine: false 7AllowShortLoopsOnASingleLine: false 8AlwaysBreakBeforeMultilineStrings: false 9AlwaysBreakTemplateDeclarations: false 10AlwaysBreakAfterDefinitionReturnType: true 11BinPackParameters: false 12BreakBeforeBinaryOperators: false 13BreakBeforeBraces: Linux 14BreakBeforeTernaryOperators: false 15BreakConstructorInitializersBeforeComma: false 16ColumnLimit: 100 17CommentPragmas: '' 18ConstructorInitializerAllOnOneLineOrOnePerLine: false 19ConstructorInitializerIndentWidth: 0 20ContinuationIndentWidth: 0 21Cpp11BracedListStyle: false 22DerivePointerBinding: false 23IndentCaseLabels: true 24IndentFunctionDeclarationAfterType: false 25IndentWidth: 4 26Language: Cpp 27MaxEmptyLinesToKeep: 2 28NamespaceIndentation: None 29ObjCSpaceAfterProperty: true 30ObjCSpaceBeforeProtocolList: true 31PenaltyBreakBeforeFirstCallParameter: 100 32PenaltyBreakComment: 100 33PenaltyBreakFirstLessLess: 0 34PenaltyBreakString: 100 35PenaltyExcessCharacter: 1 36PenaltyReturnTypeOnItsOwnLine: 20 37PointerBindsToType: true 38PointerAlignment: Left 39SpaceBeforeAssignmentOperators: true 40SpaceBeforeParens: ControlStatements 41SpaceInEmptyParentheses: false 42SpacesBeforeTrailingComments: 1 43SpacesInAngles: false 44SpacesInCStyleCastParentheses: false 45SpaceAfterCStyleCast: true 46SpacesInContainerLiterals: false 47SpacesInParentheses: false 48Standard: Cpp11 49TabWidth: 4 50UseTab: Never 51