|
| 1 | +--- |
| 2 | +Language: Cpp |
| 3 | +# BasedOnStyle: LLVM |
| 4 | +AccessModifierOffset: -4 |
| 5 | +AlignAfterOpenBracket: true |
| 6 | +AlignEscapedNewlinesLeft: false |
| 7 | +AlignOperands: true |
| 8 | +AlignTrailingComments: true |
| 9 | +AlignConsecutiveAssignments: false |
| 10 | +AllowAllParametersOfDeclarationOnNextLine: true |
| 11 | +AllowShortBlocksOnASingleLine: false |
| 12 | +AllowShortCaseLabelsOnASingleLine: false |
| 13 | +AllowShortIfStatementsOnASingleLine: false |
| 14 | +AllowShortLoopsOnASingleLine: false |
| 15 | +AllowShortFunctionsOnASingleLine: All |
| 16 | +AlwaysBreakAfterDefinitionReturnType: false |
| 17 | +AlwaysBreakTemplateDeclarations: false |
| 18 | +AlwaysBreakBeforeMultilineStrings: false |
| 19 | +BreakBeforeBinaryOperators: None |
| 20 | +BreakBeforeTernaryOperators: true |
| 21 | +BreakConstructorInitializersBeforeComma: false |
| 22 | +BinPackParameters: true |
| 23 | +BinPackArguments: true |
| 24 | +ColumnLimit: 80 |
| 25 | +ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 26 | +ConstructorInitializerIndentWidth: 4 |
| 27 | +DerivePointerAlignment: false |
| 28 | +ExperimentalAutoDetectBinPacking: false |
| 29 | +IndentCaseLabels: false |
| 30 | +IndentWrappedFunctionNames: false |
| 31 | +IndentFunctionDeclarationAfterType: false |
| 32 | +MaxEmptyLinesToKeep: 1 |
| 33 | +KeepEmptyLinesAtTheStartOfBlocks: true |
| 34 | +NamespaceIndentation: None |
| 35 | +ObjCBlockIndentWidth: 2 |
| 36 | +ObjCSpaceAfterProperty: false |
| 37 | +ObjCSpaceBeforeProtocolList: true |
| 38 | +PenaltyBreakBeforeFirstCallParameter: 19 |
| 39 | +PenaltyBreakComment: 300 |
| 40 | +PenaltyBreakString: 1000 |
| 41 | +PenaltyBreakFirstLessLess: 120 |
| 42 | +PenaltyExcessCharacter: 1000000 |
| 43 | +PenaltyReturnTypeOnItsOwnLine: 60 |
| 44 | +PointerAlignment: Left |
| 45 | +SpacesBeforeTrailingComments: 2 |
| 46 | +Cpp11BracedListStyle: true |
| 47 | +Standard: Cpp03 |
| 48 | +IndentWidth: 4 |
| 49 | +TabWidth: 4 |
| 50 | +UseTab: Never |
| 51 | +BreakBeforeBraces: Attach |
| 52 | +SpacesInParentheses: false |
| 53 | +SpacesInSquareBrackets: false |
| 54 | +SpacesInAngles: false |
| 55 | +SpaceInEmptyParentheses: false |
| 56 | +SpacesInCStyleCastParentheses: false |
| 57 | +SpaceAfterCStyleCast: true |
| 58 | +SpacesInContainerLiterals: true |
| 59 | +SpaceBeforeAssignmentOperators: true |
| 60 | +ContinuationIndentWidth: 4 |
| 61 | +CommentPragmas: '^ IWYU pragma:' |
| 62 | +ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] |
| 63 | +SpaceBeforeParens: ControlStatements |
| 64 | +DisableFormat: false |
| 65 | +... |
| 66 | + |
0 commit comments