|
1 | 1 | --- |
2 | | -Language: Cpp |
3 | 2 | BasedOnStyle: LLVM |
4 | | -AccessModifierOffset: -4 |
5 | | -AlignConsecutiveAssignments: false |
6 | | -AlignConsecutiveDeclarations: false |
7 | | -AlignOperands: false |
8 | | -AlignTrailingComments: false |
9 | | -AlwaysBreakTemplateDeclarations: Yes |
10 | | -BraceWrapping: |
11 | | - AfterCaseLabel: true |
12 | | - AfterClass: true |
13 | | - AfterControlStatement: true |
14 | | - AfterEnum: true |
15 | | - AfterFunction: true |
16 | | - AfterNamespace: true |
17 | | - AfterStruct: true |
18 | | - AfterUnion: true |
19 | | - AfterExternBlock: false |
20 | | - BeforeCatch: true |
21 | | - BeforeElse: true |
22 | | - BeforeLambdaBody: true |
23 | | - BeforeWhile: true |
24 | | - SplitEmptyFunction: true |
25 | | - SplitEmptyRecord: true |
26 | | - SplitEmptyNamespace: true |
27 | | -BreakBeforeBraces: Custom |
28 | | -BreakConstructorInitializers: AfterColon |
29 | | -BreakConstructorInitializersBeforeComma: false |
30 | | -ColumnLimit: 120 |
31 | | -ConstructorInitializerAllOnOneLineOrOnePerLine: false |
32 | | -IncludeCategories: |
33 | | - - Regex: '^<.*' |
34 | | - Priority: 1 |
35 | | - - Regex: '^".*' |
36 | | - Priority: 2 |
37 | | - - Regex: '.*' |
38 | | - Priority: 3 |
39 | | -IncludeIsMainRegex: '([-_](test|unittest))?$' |
40 | | -IndentCaseBlocks: true |
41 | | -IndentWidth: 4 |
42 | | -InsertNewlineAtEOF: true |
43 | | -MacroBlockBegin: '' |
44 | | -MacroBlockEnd: '' |
45 | | -MaxEmptyLinesToKeep: 2 |
46 | | -NamespaceIndentation: All |
| 3 | +--- |
| 4 | +Language: Cpp |
| 5 | +# Force pointers to the type for C++. |
| 6 | +DerivePointerAlignment: false |
47 | 7 | PointerAlignment: Left |
48 | | -SpaceInEmptyParentheses: false |
49 | | -SpacesInAngles: false |
50 | | -SpacesInConditionalStatement: false |
51 | | -SpacesInCStyleCastParentheses: false |
52 | | -SpacesInParentheses: false |
53 | | -TabWidth: 4 |
54 | | -... |
| 8 | +ColumnLimit: 100 |
| 9 | +AllowAllArgumentsOnNextLine: true |
| 10 | +AllowAllParametersOfDeclarationOnNextLine: true |
| 11 | +BinPackArguments: false |
| 12 | +BinPackParameters: false |
| 13 | +AlignAfterOpenBracket: BlockIndent |
0 commit comments