Eric Fiselier | 8524cba | 2017-03-04 03:23:15 | [diff] [blame] | 1 | BasedOnStyle: LLVM |
2 | |||||
3 | --- | ||||
4 | Language: Cpp | ||||
5 | |||||
6 | AlwaysBreakTemplateDeclarations: true | ||||
7 | PointerAlignment: Left | ||||
8 | |||||
9 | # Disable formatting options which may break tests. | ||||
10 | SortIncludes: false | ||||
11 | ReflowComments: false | ||||
Daniel McIntosh | f6ba6c3 | 2021-08-04 17:37:57 | [diff] [blame^] | 12 | |
13 | IndentPPDirectives: AfterHash | ||||
14 | |||||
15 | # libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting | ||||
16 | ColumnLimit: 120 | ||||
Eric Fiselier | 8524cba | 2017-03-04 03:23:15 | [diff] [blame] | 17 | --- |