.clang-format 709 B

123456789101112131415161718192021222324252627282930
  1. BasedOnStyle: LLVM
  2. TabWidth: 2
  3. ColumnLimit: 100
  4. UseTab: Never
  5. CommentPragmas: '^/'
  6. ReflowComments: true
  7. AlignTrailingComments: true
  8. SpacesBeforeTrailingComments: 1
  9. SpaceBeforeParens: ControlStatements
  10. SpacesInSquareBrackets: false
  11. BreakBeforeBraces: Allman
  12. PointerAlignment: Middle
  13. BinPackParameters: false
  14. BinPackArguments: false
  15. ConstructorInitializerAllOnOneLineOrOnePerLine: true
  16. AllowShortBlocksOnASingleLine: false
  17. AllowShortFunctionsOnASingleLine: true
  18. AllowShortIfStatementsOnASingleLine: false
  19. AllowShortLoopsOnASingleLine: false
  20. SortIncludes: false
  21. IndentCaseLabels: true
  22. ConstructorInitializerIndentWidth: 2
  23. AlwaysBreakAfterDefinitionReturnType: TopLevel
  24. AlwaysBreakTemplateDeclarations: true