|
| 1 | +--- |
| 2 | +Language: Cpp |
| 3 | +AccessModifierOffset: -3 |
| 4 | +AlignAfterOpenBracket: Align |
| 5 | +AlignConsecutiveAssignments: false |
| 6 | +AlignConsecutiveDeclarations: false |
| 7 | +AlignEscapedNewlines: Right |
| 8 | +AlignOperands: true |
| 9 | +AlignTrailingComments: true |
| 10 | +AllowAllParametersOfDeclarationOnNextLine: true |
| 11 | +AllowShortBlocksOnASingleLine: true |
| 12 | +AllowShortCaseLabelsOnASingleLine: true |
| 13 | +AllowShortFunctionsOnASingleLine: All |
| 14 | +AllowShortIfStatementsOnASingleLine: true |
| 15 | +AllowShortLoopsOnASingleLine: true |
| 16 | +AlwaysBreakAfterReturnType: None |
| 17 | +AlwaysBreakBeforeMultilineStrings: false |
| 18 | +BinPackArguments: true |
| 19 | +BinPackParameters: true |
| 20 | +BraceWrapping: |
| 21 | + AfterClass: true |
| 22 | + AfterControlStatement: false |
| 23 | + AfterEnum: false |
| 24 | + AfterFunction: false |
| 25 | + AfterNamespace: false |
| 26 | + AfterObjCDeclaration: false |
| 27 | + AfterStruct: false |
| 28 | + AfterUnion: false |
| 29 | + AfterExternBlock: false |
| 30 | + BeforeCatch: false |
| 31 | + BeforeElse: false |
| 32 | + IndentBraces: false |
| 33 | + # SplitEmptyFunction: true |
| 34 | + # SplitEmptyRecord: true |
| 35 | + # SplitEmptyNamespace: true |
| 36 | +BreakBeforeBinaryOperators: None |
| 37 | +# BreakBeforeBraces: Attach |
| 38 | +BreakBeforeInheritanceComma: false |
| 39 | +# BreakInheritanceList: BeforeColon |
| 40 | +BreakBeforeTernaryOperators: true |
| 41 | +BreakConstructorInitializersBeforeComma: false |
| 42 | +BreakConstructorInitializers: BeforeColon |
| 43 | +BreakAfterJavaFieldAnnotations: false |
| 44 | +BreakStringLiterals: true |
| 45 | +ColumnLimit: 80 |
| 46 | +CompactNamespaces: false |
| 47 | +ConstructorInitializerAllOnOneLineOrOnePerLine: false |
| 48 | +ConstructorInitializerIndentWidth: 8 |
| 49 | +ContinuationIndentWidth: 8 |
| 50 | +Cpp11BracedListStyle: true |
| 51 | +DerivePointerAlignment: false |
| 52 | +DisableFormat: false |
| 53 | +ExperimentalAutoDetectBinPacking: false |
| 54 | +FixNamespaceComments: true |
| 55 | +ForEachMacros: |
| 56 | + - foreach |
| 57 | + - Q_FOREACH |
| 58 | + - BOOST_FOREACH |
| 59 | +IncludeBlocks: Regroup |
| 60 | +IndentCaseLabels: false |
| 61 | +IndentPPDirectives: AfterHash |
| 62 | +IndentWidth: 4 |
| 63 | +IndentWrappedFunctionNames: false |
| 64 | +KeepEmptyLinesAtTheStartOfBlocks: false |
| 65 | +MacroBlockBegin: '' |
| 66 | +MacroBlockEnd: '' |
| 67 | +MaxEmptyLinesToKeep: 1 |
| 68 | +NamespaceIndentation: None |
| 69 | +PenaltyBreakAssignment: 2 |
| 70 | +PenaltyBreakBeforeFirstCallParameter: 19 |
| 71 | +PenaltyBreakComment: 300 |
| 72 | +PenaltyBreakFirstLessLess: 120 |
| 73 | +PenaltyBreakString: 1000 |
| 74 | +# PenaltyBreakTemplateDeclaration: 10 |
| 75 | +PenaltyExcessCharacter: 1000000 |
| 76 | +PenaltyReturnTypeOnItsOwnLine: 60 |
| 77 | +PointerAlignment: Left |
| 78 | +ReflowComments: true |
| 79 | +SortIncludes: true |
| 80 | +SortUsingDeclarations: true |
| 81 | +SpaceAfterCStyleCast: true |
| 82 | +SpaceAfterTemplateKeyword: true |
| 83 | +SpaceBeforeAssignmentOperators: true |
| 84 | +SpaceBeforeParens: ControlStatements |
| 85 | +SpaceInEmptyParentheses: false |
| 86 | +SpacesBeforeTrailingComments: 1 |
| 87 | +SpacesInAngles: false |
| 88 | +SpacesInContainerLiterals: true |
| 89 | +SpacesInCStyleCastParentheses: false |
| 90 | +SpacesInParentheses: false |
| 91 | +SpacesInSquareBrackets: false |
| 92 | +Standard: Auto |
| 93 | +TabWidth: 4 |
| 94 | +UseTab: Never |
0 commit comments