.clang-format 453 B

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