.clang-format 705 B

1234567891011121314151617181920212223242526272829
  1. # http://clang.llvm.org/docs/ClangFormatStyleOptions.html
  2. BasedOnStyle: LLVM
  3. IndentWidth: 4
  4. TabWidth: 4
  5. UseTab: ForIndentation
  6. ColumnLimit: 80
  7. Language: Cpp
  8. AccessModifierOffset: 2
  9. AlignAfterOpenBracket: true
  10. AllowAllParametersOfDeclarationOnNextLine: false
  11. AllowShortBlocksOnASingleLine: false
  12. AllowShortCaseLabelsOnASingleLine: false
  13. AllowShortFunctionsOnASingleLine: None
  14. AllowShortIfStatementsOnASingleLine: false
  15. AllowShortLoopsOnASingleLine: false
  16. BinPackArguments: false
  17. BinPackParameters: false
  18. BreakBeforeBraces: Linux
  19. DerivePointerAlignment: false
  20. MaxEmptyLinesToKeep: 2
  21. SpaceBeforeParens: ControlStatements
  22. SpaceInEmptyParentheses: false
  23. SpacesInSquareBrackets: false
  24. DisableFormat: false