.clang-format 503 B

123456789101112131415161718192021222324
  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. AllowShortIfStatementsOnASingleLine: false
  11. BinPackArguments: false
  12. BinPackParameters: false
  13. BreakBeforeBraces: Linux
  14. DerivePointerAlignment: false
  15. MaxEmptyLinesToKeep: 2
  16. SpaceBeforeParens: ControlStatements
  17. SpaceInEmptyParentheses: false
  18. SpacesInSquareBrackets: false
  19. DisableFormat: false