| 1 | --- |
| 2 | BasedOnStyle: 'Google' |
| 3 | Language: Cpp |
| 4 |
|
| 5 | AlignAfterOpenBracket: AlwaysBreak |
| 6 | AlignEscapedNewlines: Left |
| 7 | AlignTrailingComments: true |
| 8 |
|
| 9 | AllowShortBlocksOnASingleLine: false |
| 10 | AllowShortCaseLabelsOnASingleLine: false |
| 11 | AllowShortIfStatementsOnASingleLine: WithoutElse |
| 12 | AllowShortLoopsOnASingleLine: true |
| 13 |
|
| 14 | AlwaysBreakAfterReturnType: None |
| 15 | BinPackParameters: false |
| 16 |
|
| 17 | BreakBeforeBraces: Attach |
| 18 | BreakBeforeTernaryOperators: true |
| 19 | BreakStringLiterals: true |
| 20 |
|
| 21 | ColumnLimit: 80 |
| 22 | IndentWidth: 4 |
| 23 | TabWidth: 4 |
| 24 | MaxEmptyLinesToKeep: 2 |
| 25 | UseTab: Never |
| 26 |
|
| 27 | IncludeBlocks: Regroup |
| 28 | SortIncludes: true |
| 29 |
|
| 30 | IndentCaseLabels: true |
| 31 | IndentGotoLabels: false |
| 32 | IndentPPDirectives: AfterHash |
| 33 | IndentWrappedFunctionNames: true |
| 34 |
|
| 35 | PointerAlignment: Right |
| 36 | SpacesBeforeTrailingComments: 1 |
| 37 |
|