|
1 | 1 | ---
|
2 | 2 | BasedOnStyle: LLVM
|
3 | 3 | AccessModifierOffset: -4
|
4 |
| -AlignEscapedNewlinesLeft: false |
5 | 4 | AlignTrailingComments: true
|
6 | 5 | AllowAllParametersOfDeclarationOnNextLine: true
|
7 | 6 | AllowShortIfStatementsOnASingleLine: false
|
8 | 7 | AllowShortLoopsOnASingleLine: false
|
9 |
| -AllowShortFunctionsOnASingleLine: false |
10 |
| -AlwaysBreakTemplateDeclarations: true |
| 8 | +AllowShortFunctionsOnASingleLine: None |
| 9 | +AlwaysBreakTemplateDeclarations: Yes |
11 | 10 | AlwaysBreakBeforeMultilineStrings: false
|
12 | 11 | BinPackParameters: true
|
13 |
| -BreakBeforeBinaryOperators: false |
14 |
| -BreakBeforeBraces: Allman |
| 12 | +BreakBeforeBinaryOperators: None |
| 13 | +BreakBeforeBraces: Custom |
| 14 | +BraceWrapping: |
| 15 | + AfterCaseLabel: true |
| 16 | + AfterClass: true |
| 17 | + AfterControlStatement: Always |
| 18 | + AfterEnum: true |
| 19 | + AfterExternBlock: true |
| 20 | + AfterFunction: true |
| 21 | + AfterNamespace: true |
| 22 | + AfterObjCDeclaration: true |
| 23 | + AfterStruct: true |
| 24 | + AfterUnion: true |
| 25 | + BeforeCatch: true |
| 26 | + BeforeElse: true |
| 27 | + BeforeLambdaBody: false |
| 28 | + BeforeWhile: false |
| 29 | + IndentBraces: false |
| 30 | + SplitEmptyFunction: true |
| 31 | + SplitEmptyNamespace: true |
| 32 | + SplitEmptyRecord: true |
15 | 33 | BreakBeforeTernaryOperators: false
|
16 | 34 | BreakConstructorInitializersBeforeComma: false
|
17 | 35 | ColumnLimit: 100
|
18 | 36 | ConstructorInitializerIndentWidth: 0
|
19 | 37 | ConstructorInitializerAllOnOneLineOrOnePerLine: false
|
20 | 38 | Cpp11BracedListStyle: false
|
21 |
| -DerivePointerBinding: false |
22 | 39 | ExperimentalAutoDetectBinPacking: false
|
23 | 40 | IndentCaseLabels: false
|
24 | 41 | IndentWidth: 4
|
25 |
| -IndentFunctionDeclarationAfterType: false |
26 | 42 | MaxEmptyLinesToKeep: 1
|
27 | 43 | NamespaceIndentation: Inner
|
28 | 44 |
|
29 |
| -PointerBindsToType: true |
30 |
| - |
31 | 45 | PenaltyBreakBeforeFirstCallParameter: 19
|
32 | 46 | PenaltyBreakComment: 60
|
33 | 47 | PenaltyBreakString: 1000
|
34 | 48 | PenaltyBreakFirstLessLess: 120
|
35 | 49 | PenaltyExcessCharacter: 1000000
|
36 | 50 | PenaltyReturnTypeOnItsOwnLine: 60
|
37 |
| - |
| 51 | +PointerAlignment: Left |
38 | 52 |
|
39 | 53 | SpaceBeforeAssignmentOperators: true
|
40 | 54 | SpaceInEmptyParentheses: false
|
41 | 55 | SpacesBeforeTrailingComments: 1
|
42 | 56 |
|
43 |
| - |
44 |
| -Standard: Cpp11 |
| 57 | +Standard: Latest |
45 | 58 | TabWidth: 4
|
46 | 59 | UseTab: Never
|
47 | 60 |
|
48 | 61 | SpacesInParentheses: false
|
49 | 62 | SpacesInAngles: false
|
50 |
| -SpaceInEmptyParentheses: false |
51 | 63 | SpacesInCStyleCastParentheses: false
|
52 |
| -SpaceAfterControlStatementKeyword: true |
53 |
| -SpaceBeforeAssignmentOperators: true |
54 | 64 | ContinuationIndentWidth: 4
|
55 | 65 | ...
|
56 |
| - |
|
0 commit comments