cpp-format 709 B

12345678910111213141516171819202122232425262728
  1. BasedOnStyle: LLVM
  2. UseTab: Never
  3. IndentWidth: 4
  4. TabWidth: 4
  5. AllowShortIfStatementsOnASingleLine: false
  6. ColumnLimit: 80
  7. AccessModifierOffset: -4
  8. PointerAlignment: Left
  9. NamespaceIndentation: All
  10. SpaceBeforeParens: Never
  11. SpaceAfterTemplateKeyword: false
  12. AlwaysBreakTemplateDeclarations: Yes
  13. AllowShortFunctionsOnASingleLine: None
  14. FixNamespaceComments: false
  15. AllowShortCaseLabelsOnASingleLine: true
  16. IndentCaseLabels: true
  17. IndentCaseBlocks: false
  18. IncludeBlocks: Regroup
  19. IncludeCategories:
  20. - Regex: '^<.*\.h>'
  21. Priority: 2
  22. SortPriority: 0
  23. - Regex: '^<.*'
  24. Priority: 1
  25. SortPriority: 0
  26. - Regex: '.*'
  27. Priority: 3
  28. SortPriority: 0