.clang-format 523 B

123456789101112131415161718192021
  1. ---
  2. # See all possible options and defaults with:
  3. # clang-format --style=llvm --dump-config
  4. BasedOnStyle: LLVM
  5. AccessModifierOffset: -4
  6. AlignConsecutiveAssignments: true
  7. AlwaysBreakTemplateDeclarations: Yes
  8. BinPackArguments: false
  9. BinPackParameters: false
  10. BreakBeforeBinaryOperators: All
  11. BreakConstructorInitializers: BeforeColon
  12. ColumnLimit: 99
  13. IndentCaseLabels: true
  14. IndentPPDirectives: AfterHash
  15. IndentWidth: 4
  16. Language: Cpp
  17. SpaceAfterCStyleCast: true
  18. # SpaceInEmptyBlock: true # too new
  19. Standard: Cpp11
  20. TabWidth: 4
  21. ...