1#AccessModifierOffset: 2 2AlignAfterOpenBracket: Align 3AlignConsecutiveAssignments: false 4#AlignConsecutiveBitFields: false 5AlignConsecutiveDeclarations: false 6AlignConsecutiveMacros: false 7AlignEscapedNewlines: Right 8#AlignOperands: AlignAfterOperator 9AlignTrailingComments: true 10AllowAllArgumentsOnNextLine: false 11AllowAllConstructorInitializersOnNextLine: false 12AllowAllParametersOfDeclarationOnNextLine: false 13AllowShortBlocksOnASingleLine: Empty 14AllowShortCaseLabelsOnASingleLine: false 15#AllowShortEnumsOnASingleLine: true 16AllowShortFunctionsOnASingleLine: Empty 17AllowShortIfStatementsOnASingleLine: Never 18AllowShortLambdasOnASingleLine: Empty 19AllowShortLoopsOnASingleLine: false 20AlwaysBreakAfterReturnType: None 21AlwaysBreakBeforeMultilineStrings: false 22AlwaysBreakTemplateDeclarations: Yes 23BinPackArguments: false 24BinPackParameters: false 25#BitFieldColonSpacing: Both 26BreakBeforeBraces: Custom # or Allman 27BraceWrapping: 28 AfterCaseLabel: true 29 AfterClass: true 30 AfterControlStatement: Always 31 AfterEnum: true 32 AfterFunction: true 33 AfterNamespace: false 34 AfterStruct: true 35 AfterUnion: true 36 AfterExternBlock: false 37 BeforeCatch: true 38 BeforeElse: true 39 #BeforeLambdaBody: false 40 #BeforeWhile: false 41 SplitEmptyFunction: false 42 SplitEmptyRecord: false 43 SplitEmptyNamespace: false 44BreakBeforeTernaryOperators: true 45BreakConstructorInitializers: BeforeComma 46BreakStringLiterals: false 47ColumnLimit: 0 48CompactNamespaces: false 49ConstructorInitializerIndentWidth: 2 50Cpp11BracedListStyle: true 51PointerAlignment: Left 52FixNamespaceComments: true 53IncludeBlocks: Preserve 54#IndentCaseBlocks: false 55IndentCaseLabels: true 56IndentGotoLabels: false 57IndentPPDirectives: BeforeHash 58IndentWidth: 4 59KeepEmptyLinesAtTheStartOfBlocks: false 60MaxEmptyLinesToKeep: 1 61NamespaceIndentation: None 62ReflowComments: false 63SortIncludes: true 64SortUsingDeclarations: true 65SpaceAfterCStyleCast: false 66SpaceAfterLogicalNot: false 67SpaceAfterTemplateKeyword: false 68SpaceBeforeAssignmentOperators: true 69SpaceBeforeCpp11BracedList: false 70SpaceBeforeParens: ControlStatements 71SpaceBeforeRangeBasedForLoopColon: true 72SpaceBeforeSquareBrackets: false 73SpaceInEmptyBlock: false 74SpaceInEmptyParentheses: false 75SpacesBeforeTrailingComments: 2 76SpacesInAngles: false 77SpacesInCStyleCastParentheses: false 78SpacesInConditionalStatement: false 79SpacesInContainerLiterals: false 80SpacesInParentheses: false 81SpacesInSquareBrackets: false 82Standard: c++11 83TabWidth: 4 84UseTab: Never 85