|
1 | 1 | --- |
2 | | -BasedOnStyle: Google |
3 | 2 | AccessModifierOffset: -2 |
4 | | -ConstructorInitializerIndentWidth: 2 |
5 | 3 | AlignEscapedNewlinesLeft: false |
6 | 4 | AlignTrailingComments: true |
7 | 5 | AllowAllParametersOfDeclarationOnNextLine: false |
| 6 | +AllowShortFunctionsOnASingleLine: None |
8 | 7 | AllowShortIfStatementsOnASingleLine: false |
9 | 8 | AllowShortLoopsOnASingleLine: false |
10 | | -AllowShortFunctionsOnASingleLine: None |
11 | | -AlwaysBreakTemplateDeclarations: true |
12 | 9 | AlwaysBreakBeforeMultilineStrings: false |
| 10 | +AlwaysBreakTemplateDeclarations: true |
| 11 | +BasedOnStyle: Google |
| 12 | +BinPackParameters: true |
| 13 | + |
| 14 | +BraceWrapping: # Control of individual brace wrapping cases |
| 15 | + AfterCaseLabel: 'true' |
| 16 | + AfterClass: 'true' |
| 17 | + AfterControlStatement: 'true' |
| 18 | + AfterEnum: 'true' |
| 19 | + AfterFunction: 'true' |
| 20 | + AfterNamespace: 'true' |
| 21 | + AfterStruct: 'true' |
| 22 | + AfterUnion: 'true' |
| 23 | + BeforeCatch: 'true' |
| 24 | + BeforeElse: 'true' |
| 25 | + IndentBraces: 'false' |
| 26 | + |
13 | 27 | BreakBeforeBinaryOperators: false |
14 | 28 | BreakBeforeTernaryOperators: false |
15 | 29 | BreakConstructorInitializersBeforeComma: true |
16 | | -BinPackParameters: true |
17 | | -ColumnLimit: 120 |
| 30 | +BreakBeforeBraces: Custom # Configure each individual brace in BraceWrapping |
| 31 | + |
| 32 | +ColumnLimit: 120 |
18 | 33 | ConstructorInitializerAllOnOneLineOrOnePerLine: true |
| 34 | +ConstructorInitializerIndentWidth: 2 |
| 35 | +ContinuationIndentWidth: 4 |
| 36 | +Cpp11BracedListStyle: false |
19 | 37 | DerivePointerBinding: false |
20 | | -PointerBindsToType: true |
21 | 38 | ExperimentalAutoDetectBinPacking: false |
22 | 39 | IndentCaseLabels: true |
| 40 | +IndentFunctionDeclarationAfterType: false |
23 | 41 | IndentPPDirectives: AfterHash |
| 42 | +IndentWidth: 2 |
24 | 43 | MaxEmptyLinesToKeep: 1 |
25 | 44 | NamespaceIndentation: None |
26 | 45 | ObjCSpaceBeforeProtocolList: true |
27 | 46 | PenaltyBreakBeforeFirstCallParameter: 19 |
28 | 47 | PenaltyBreakComment: 60 |
29 | | -PenaltyBreakString: 1 |
30 | 48 | PenaltyBreakFirstLessLess: 1000 |
| 49 | +PenaltyBreakString: 1 |
31 | 50 | PenaltyExcessCharacter: 1000 |
32 | 51 | PenaltyReturnTypeOnItsOwnLine: 90 |
33 | | -SpacesBeforeTrailingComments: 2 |
34 | | -Cpp11BracedListStyle: false |
35 | | -Standard: Auto |
36 | | -IndentWidth: 2 |
37 | | -TabWidth: 2 |
38 | | -UseTab: Never |
39 | | -IndentFunctionDeclarationAfterType: false |
40 | | -SpacesInParentheses: false |
41 | | -SpacesInAngles: false |
42 | | -SpaceInEmptyParentheses: false |
43 | | -SpacesInCStyleCastParentheses: false |
44 | | -SpaceAfterControlStatementKeyword: true |
45 | | -SpaceBeforeAssignmentOperators: true |
46 | | -ContinuationIndentWidth: 4 |
| 52 | +PointerBindsToType: true |
47 | 53 | SortIncludes: false |
48 | 54 | SpaceAfterCStyleCast: false |
49 | | - |
50 | | -# Configure each individual brace in BraceWrapping |
51 | | -BreakBeforeBraces: Custom |
52 | | - |
53 | | -# Control of individual brace wrapping cases |
54 | | -BraceWrapping: { |
55 | | - AfterCaseLabel: 'true' |
56 | | - AfterClass: 'true' |
57 | | - AfterControlStatement: 'true' |
58 | | - AfterEnum : 'true' |
59 | | - AfterFunction : 'true' |
60 | | - AfterNamespace : 'true' |
61 | | - AfterStruct : 'true' |
62 | | - AfterUnion : 'true' |
63 | | - BeforeCatch : 'true' |
64 | | - BeforeElse : 'true' |
65 | | - IndentBraces : 'false' |
66 | | -} |
67 | | -... |
| 55 | +SpaceAfterControlStatementKeyword: true |
| 56 | +SpaceBeforeAssignmentOperators: true |
| 57 | +SpaceInEmptyParentheses: false |
| 58 | +SpacesBeforeTrailingComments: 2 |
| 59 | +SpacesInAngles: false |
| 60 | +SpacesInCStyleCastParentheses: false |
| 61 | +SpacesInParentheses: false |
| 62 | +Standard: Auto |
| 63 | +TabWidth: 2 |
| 64 | +UseTab: Never |
0 commit comments