|
| 1 | +--- |
| 2 | +BasedOnStyle: LLVM |
| 3 | +BreakBeforeBraces: Custom |
| 4 | +BraceWrapping: |
| 5 | + AfterCaseLabel: true |
| 6 | + AfterClass: true |
| 7 | + AfterControlStatement: Never |
| 8 | + AfterEnum: true |
| 9 | + AfterFunction: true |
| 10 | + AfterNamespace: true |
| 11 | + AfterStruct: true |
| 12 | + AfterUnion: true |
| 13 | + AfterExternBlock: true |
| 14 | + BeforeCatch: false |
| 15 | + BeforeElse: false |
| 16 | + BeforeLambdaBody: true |
| 17 | + BeforeWhile: false |
| 18 | + IndentBraces: false |
| 19 | + SplitEmptyFunction: true |
| 20 | + SplitEmptyRecord: true |
| 21 | + SplitEmptyNamespace: true |
| 22 | +IndentWidth: 4 |
| 23 | +TabWidth: 4 |
| 24 | +UseTab: Never |
| 25 | +ContinuationIndentWidth: 4 |
| 26 | +IndentCaseLabels: true |
| 27 | +IndentCaseBlocks: false |
| 28 | +IndentGotoLabels: true |
| 29 | +IndentPPDirectives: None |
| 30 | +IndentExternBlock: AfterExternBlock |
| 31 | +IndentRequiresClause: true |
| 32 | +IndentWrappedFunctionNames: false |
| 33 | +AlignAfterOpenBracket: Align |
| 34 | +AlignArrayOfStructures: Left |
| 35 | +AlignConsecutiveAssignments: None |
| 36 | +AlignConsecutiveBitFields: None |
| 37 | +AlignConsecutiveDeclarations: None |
| 38 | +AlignConsecutiveMacros: None |
| 39 | +AlignEscapedNewlines: Right |
| 40 | +AlignOperands: Align |
| 41 | +AlignTrailingComments: true |
| 42 | +AllowAllArgumentsOnNextLine: true |
| 43 | +AllowAllParametersOfDeclarationOnNextLine: true |
| 44 | +AllowShortBlocksOnASingleLine: Never |
| 45 | +AllowShortCaseLabelsOnASingleLine: false |
| 46 | +AllowShortEnumsOnASingleLine: false |
| 47 | +AllowShortFunctionsOnASingleLine: None |
| 48 | +AllowShortIfStatementsOnASingleLine: Never |
| 49 | +AllowShortLambdasOnASingleLine: All |
| 50 | +AllowShortLoopsOnASingleLine: false |
| 51 | +LambdaBodyIndentation: OuterScope |
| 52 | +AlwaysBreakAfterReturnType: None |
| 53 | +AlwaysBreakBeforeMultilineStrings: false |
| 54 | +AlwaysBreakTemplateDeclarations: MultiLine |
| 55 | +BinPackArguments: true |
| 56 | +BinPackParameters: true |
| 57 | +BreakBeforeBinaryOperators: None |
| 58 | +BreakBeforeConceptDeclarations: true |
| 59 | +BreakBeforeTernaryOperators: true |
| 60 | +BreakConstructorInitializers: BeforeColon |
| 61 | +BreakInheritanceList: BeforeColon |
| 62 | +BreakStringLiterals: true |
| 63 | +ColumnLimit: 180 |
| 64 | +SpaceAfterCStyleCast: false |
| 65 | +SpaceAfterLogicalNot: false |
| 66 | +SpaceAfterTemplateKeyword: true |
| 67 | +SpaceAroundPointerQualifiers: Default |
| 68 | +SpaceBeforeAssignmentOperators: true |
| 69 | +SpaceBeforeCaseColon: false |
| 70 | +SpaceBeforeCpp11BracedList: false |
| 71 | +SpaceBeforeCtorInitializerColon: true |
| 72 | +SpaceBeforeInheritanceColon: true |
| 73 | +SpaceBeforeParens: ControlStatements |
| 74 | +SpaceBeforeParensOptions: |
| 75 | + AfterControlStatements: true |
| 76 | + AfterForeachMacros: true |
| 77 | + AfterFunctionDefinitionName: false |
| 78 | + AfterFunctionDeclarationName: false |
| 79 | + AfterIfMacros: true |
| 80 | + AfterOverloadedOperator: false |
| 81 | + BeforeNonEmptyParentheses: false |
| 82 | +SpaceBeforeRangeBasedForLoopColon: true |
| 83 | +SpaceBeforeSquareBrackets: false |
| 84 | +SpaceInEmptyBlock: false |
| 85 | +SpaceInEmptyParentheses: false |
| 86 | +SpacesBeforeTrailingComments: 1 |
| 87 | +SpacesInAngles: Never |
| 88 | +SpacesInCStyleCastParentheses: false |
| 89 | +SpacesInConditionalStatement: false |
| 90 | +SpacesInContainerLiterals: true |
| 91 | +SpacesInParentheses: false |
| 92 | +SpacesInSquareBrackets: false |
| 93 | +Cpp11BracedListStyle: false |
| 94 | +DerivePointerAlignment: false |
| 95 | +PointerAlignment: Left |
| 96 | +ReferenceAlignment: Pointer |
| 97 | +FixNamespaceComments: true |
| 98 | +IncludeBlocks: Preserve |
| 99 | +InsertTrailingCommas: None |
| 100 | +KeepEmptyLinesAtTheStartOfBlocks: true |
| 101 | +MaxEmptyLinesToKeep: 1 |
| 102 | +NamespaceIndentation: None |
| 103 | +SortIncludes: Never |
| 104 | +SortUsingDeclarations: true |
| 105 | +Language: Cpp |
| 106 | +Standard: Latest |
0 commit comments