.clang-format 441 B

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