JF Bastien | e637637 | 2018-12-19 17:45:32 | [diff] [blame] | 1 | BasedOnStyle: LLVM |
| 2 | |
| 3 | Language: Cpp |
| 4 | Standard: Cpp11 |
| 5 | |
| 6 | IndentWidth: 4 |
| 7 | ColumnLimit: 120 |
| 8 | |
| 9 | AlwaysBreakTemplateDeclarations: true |
| 10 | AlwaysBreakAfterReturnType: All |
| 11 | PointerAlignment: Left |
| 12 | AllowShortIfStatementsOnASingleLine: false |
| 13 | BreakBeforeBraces: Allman |
| 14 | |
| 15 | # Disable formatting options which may break tests. |
| 16 | SortIncludes: false |
| 17 | ReflowComments: false |
Louis Dionne | 95c585e | 2019-04-01 15:21:46 | [diff] [blame] | 18 | |
| 19 | # Indent preprocessor directives |
| 20 | IndentPPDirectives: AfterHash |