xref: /openbsd-src/gnu/llvm/libcxxabi/.clang-format (revision 8f1d572453a8bab44a2fe956e25efc4124e87e82)
1BasedOnStyle: LLVM
2
3Language: Cpp
4
5AlwaysBreakTemplateDeclarations: true
6PointerAlignment: Left
7
8# Disable formatting options which may break tests.
9SortIncludes: false
10ReflowComments: false
11
12IndentPPDirectives: AfterHash
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