|
| 1 | +AccessModifierOffset: -4 |
| 2 | +AlignAfterOpenBracket: Align |
| 3 | +AlignConsecutiveAssignments: false |
| 4 | +AlignConsecutiveDeclarations: false |
| 5 | +AlignEscapedNewlinesLeft: false |
| 6 | +AlignTrailingComments: false |
| 7 | +AllowAllParametersOfDeclarationOnNextLine: true |
| 8 | +AllowShortFunctionsOnASingleLine: false |
| 9 | +AllowShortIfStatementsOnASingleLine: false |
| 10 | +AllowShortCaseLabelsOnASingleLine : false |
| 11 | +AllowShortLoopsOnASingleLine: false |
| 12 | +AlwaysBreakAfterDefinitionReturnType: false |
| 13 | +AlwaysBreakBeforeMultilineStrings: true |
| 14 | +AlwaysBreakTemplateDeclarations: true |
| 15 | +BinPackArguments: true |
| 16 | +BinPackParameters: false |
| 17 | +BreakBeforeBinaryOperators: false |
| 18 | +BreakBeforeBraces: Allman |
| 19 | +BreakBeforeTernaryOperators: false |
| 20 | +BreakConstructorInitializersBeforeComma: false |
| 21 | +BreakStringLiterals: false |
| 22 | +ColumnLimit: 120 |
| 23 | +CommentPragmas: '' |
| 24 | +ConstructorInitializerAllOnOneLineOrOnePerLine: true |
| 25 | +ConstructorInitializerIndentWidth: 4 |
| 26 | +ContinuationIndentWidth: 4 |
| 27 | +Cpp11BracedListStyle: false |
| 28 | +DerivePointerBinding: false |
| 29 | +FixNamespaceComments: false |
| 30 | +IndentCaseLabels: false |
| 31 | +IndentPPDirectives: AfterHash |
| 32 | +IndentFunctionDeclarationAfterType: false |
| 33 | +IndentWidth: 4 |
| 34 | +SortIncludes: true |
| 35 | +IncludeCategories: |
| 36 | + - Regex: '<carb\/.+>' |
| 37 | + Priority: 2 |
| 38 | + - Regex: '<[[:alnum:]_.]+>' |
| 39 | + Priority: 4 |
| 40 | + - Regex: '<[[:alnum:]_.\/]+>' |
| 41 | + Priority: 3 |
| 42 | + - Regex: '".*"' |
| 43 | + Priority: 1 |
| 44 | +IncludeBlocks: Regroup |
| 45 | +Language: Cpp |
| 46 | +MaxEmptyLinesToKeep: 2 |
| 47 | +NamespaceIndentation: None |
| 48 | +ObjCSpaceAfterProperty: true |
| 49 | +ObjCSpaceBeforeProtocolList: true |
| 50 | +PenaltyBreakBeforeFirstCallParameter: 0 |
| 51 | +PenaltyBreakComment: 1 |
| 52 | +PenaltyBreakFirstLessLess: 0 |
| 53 | +PenaltyBreakString: 1 |
| 54 | +PenaltyExcessCharacter: 10 |
| 55 | +PenaltyReturnTypeOnItsOwnLine: 1000 |
| 56 | +PointerAlignment: Left |
| 57 | +SpaceBeforeAssignmentOperators: true |
| 58 | +SpaceBeforeParens: ControlStatements |
| 59 | +SpaceInEmptyParentheses: false |
| 60 | +SpacesBeforeTrailingComments: 1 |
| 61 | +SpacesInAngles: false |
| 62 | +SpacesInCStyleCastParentheses: false |
| 63 | +SpacesInContainerLiterals: false |
| 64 | +SpacesInParentheses: false |
| 65 | +Standard: Cpp11 |
| 66 | +ReflowComments: true |
| 67 | +TabWidth: 4 |
| 68 | +UseTab: Never |
0 commit comments