[clang-repl] Land initial infrastructure for incremental parsing
[llvm-project.git] / libcxx / .clang-format
blobcfa0c289635c59c0d9e0a9941085fece52d7eccc
1 BasedOnStyle: LLVM
3 ---
4 Language: Cpp
5 Standard: Cpp03
7 AlwaysBreakTemplateDeclarations: true
8 PointerAlignment: Left
10 # Disable formatting options which may break tests.
11 SortIncludes: false
12 ReflowComments: false
14 # libc++ has some long names so we need more than the 80 column limit imposed by LLVM style, for sensible formatting
15 ColumnLimit: 120
16 ---