.clang-format 734 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. BasedOnStyle: Microsoft
  3. Language: Cpp
  4. ###################################
  5. # indent conf
  6. ###################################
  7. UseTab: Never
  8. IndentWidth: 4
  9. TabWidth: 4
  10. ColumnLimit: 0
  11. AccessModifierOffset: -4
  12. NamespaceIndentation: All
  13. FixNamespaceComments: false
  14. BreakBeforeBraces: Linux
  15. ###################################
  16. # other styles
  17. ###################################
  18. #
  19. # for more conf, you can ref: https://clang.llvm.org/docs/ClangFormatStyleOptions.html
  20. #
  21. AllowShortIfStatementsOnASingleLine: true
  22. AllowShortLoopsOnASingleLine: true
  23. AllowShortBlocksOnASingleLine: true
  24. IndentCaseLabels: true
  25. SortIncludes: false
  26. AlignConsecutiveMacros: AcrossEmptyLines
  27. AlignConsecutiveAssignments: Consecutive