1BasedOnStyle: LLVM
2
3---
4Language: Cpp
5
6AlwaysBreakTemplateDeclarations: true
7PointerAlignment: Left
8
9# Disable formatting options which may break tests.
10SortIncludes: false
11ReflowComments: false
12
13IndentPPDirectives: AfterHash
14
15# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
16ColumnLimit: 120
17---
18