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