xref: /netbsd-src/external/apache2/llvm/dist/libcxx/.clang-format (revision 6881a4007f077b54e5f51159c52b9b25f57deb0d)
1BasedOnStyle: LLVM
2
3---
4Language: Cpp
5Standard: Cpp03
6
7AlwaysBreakTemplateDeclarations: true
8PointerAlignment: Left
9
10# Disable formatting options which may break tests.
11SortIncludes: false
12ReflowComments: false
13
14# libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
15ColumnLimit: 120
16---
17