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