Eric Fiselier | e93265a | 2016-11-15 20:21:30 +0000 | [diff] [blame] | 1 | BasedOnStyle: LLVM |
Eric Fiselier | b5d9f44 | 2016-11-23 01:18:56 +0000 | [diff] [blame] | 2 | |
| 3 | --- |
| 4 | Language: Cpp |
Mark de Wever | db51a55 | 2021-10-28 17:48:27 +0200 | [diff] [blame^] | 5 | Standard: c++20 |
| 6 | SpacesInAngles: Leave |
Eric Fiselier | b5d9f44 | 2016-11-23 01:18:56 +0000 | [diff] [blame] | 7 | |
| 8 | AlwaysBreakTemplateDeclarations: true |
Saleem Abdulrasool | 2f31a16 | 2017-01-03 04:23:52 +0000 | [diff] [blame] | 9 | PointerAlignment: Left |
Eric Fiselier | 1500ba7 | 2016-12-09 03:17:25 +0000 | [diff] [blame] | 10 | |
| 11 | # Disable formatting options which may break tests. |
| 12 | SortIncludes: false |
Eric Fiselier | a473abc | 2016-12-09 03:18:45 +0000 | [diff] [blame] | 13 | ReflowComments: false |
Christopher Di Bella | 29e7292 | 2021-03-31 22:46:28 +0000 | [diff] [blame] | 14 | |
Mark de Wever | 795628c | 2021-09-15 18:29:22 +0200 | [diff] [blame] | 15 | # libc++'s preferred indentions of preprocessor statements. |
| 16 | IndentPPDirectives: AfterHash |
| 17 | |
Christopher Di Bella | 29e7292 | 2021-03-31 22:46:28 +0000 | [diff] [blame] | 18 | # libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting |
| 19 | ColumnLimit: 120 |
Eric Fiselier | b5d9f44 | 2016-11-23 01:18:56 +0000 | [diff] [blame] | 20 | --- |