blob: dc6f2af8fb26b717200d9e2bfdc174a9bffb10ce [file] [log] [blame]
Eric Fiselier8524cba2017-03-04 03:23:151BasedOnStyle: LLVM
2
3---
4Language: Cpp
5
6AlwaysBreakTemplateDeclarations: true
7PointerAlignment: Left
8
9# Disable formatting options which may break tests.
10SortIncludes: false
11ReflowComments: false
Daniel McIntoshf6ba6c32021-08-04 17:37:5712
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
Eric Fiselier8524cba2017-03-04 03:23:1517---