.clang-format 463 B

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