|
1 | 1 | --- |
| 2 | +Language: Cpp |
| 3 | +# (Options are sorted alphabetically) |
2 | 4 | AlignAfterOpenBracket: Align |
3 | | -AlignConsecutiveAssignments: 'false' |
4 | | -AlignConsecutiveDeclarations: 'false' |
5 | | -AlignEscapedNewlinesLeft: 'true' |
6 | | -AllowAllParametersOfDeclarationOnNextLine: 'true' |
7 | | -AllowShortBlocksOnASingleLine: 'false' |
8 | | -AllowShortCaseLabelsOnASingleLine: 'false' |
| 5 | +AlignEscapedNewlines: Right |
| 6 | +AlignOperands: AlignAfterOperator |
| 7 | +AllowAllArgumentsOnNextLine: false |
| 8 | +AllowAllParametersOfDeclarationOnNextLine: false |
| 9 | +AllowShortBlocksOnASingleLine: Empty |
| 10 | +AllowShortCaseLabelsOnASingleLine: true |
9 | 11 | AllowShortFunctionsOnASingleLine: None |
10 | | -AllowShortIfStatementsOnASingleLine: 'false' |
11 | | -AllowShortLoopsOnASingleLine: 'false' |
12 | | -AlwaysBreakAfterReturnType: All |
13 | | -BinPackArguments: 'false' |
14 | | -BinPackParameters: 'false' |
15 | | -BreakBeforeBraces: Linux |
16 | | -ColumnLimit: '80' |
17 | | -ContinuationIndentWidth: '3' |
18 | | -IndentCaseLabels: 'false' |
19 | | -IndentWidth: '3' |
20 | | -KeepEmptyLinesAtTheStartOfBlocks: 'false' |
21 | | -Language: Cpp |
22 | | -MaxEmptyLinesToKeep: '2' |
23 | | -SortIncludes: 'false' |
24 | | -SpaceAfterCStyleCast: 'true' |
25 | | -SpaceBeforeAssignmentOperators: 'true' |
26 | | -SpaceBeforeParens: Always |
27 | | -SpaceInEmptyParentheses: 'false' |
28 | | -SpacesInAngles: 'false' |
29 | | -SpacesInCStyleCastParentheses: 'false' |
30 | | -SpacesInContainerLiterals: 'true' |
31 | | -SpacesInParentheses: 'false' |
32 | | -SpacesInSquareBrackets: 'false' |
33 | | -Standard: Cpp11 |
34 | | -TabWidth: '3' |
| 12 | +AllowShortIfStatementsOnASingleLine: Never |
| 13 | +AllowShortLoopsOnASingleLine: false |
| 14 | +BinPackArguments: false |
| 15 | +BinPackParameters: false |
| 16 | +BreakBeforeBinaryOperators: NonAssignment |
| 17 | +BreakBeforeBraces: Attach |
| 18 | +ColumnLimit: 120 |
| 19 | +ContinuationIndentWidth: 4 |
| 20 | +IndentCaseLabels: false |
| 21 | +IndentWidth: 4 |
| 22 | +InsertBraces: true |
| 23 | +KeepEmptyLinesAtTheStartOfBlocks: false |
| 24 | +PointerAlignment: Right |
| 25 | +QualifierAlignment: Custom |
| 26 | +QualifierOrder: ["static", "inline", "const", "volatile", "type", "restrict"] |
| 27 | +SeparateDefinitionBlocks: Always |
| 28 | +SpaceBeforeAssignmentOperators: true |
| 29 | +SpaceBeforeParens: ControlStatements |
| 30 | +SpacesInLineCommentPrefix: |
| 31 | + Minimum: 1 |
| 32 | + Maximum: -1 |
35 | 33 | UseTab: Never |
36 | | - |
37 | | -... |
0 commit comments