.clang-format 532 B

12345678910111213141516171819202122
  1. AlignAfterOpenBracket: true
  2. AlignConsecutiveAssignments: true
  3. AlignOperands: true
  4. AlignTrailingComments: true
  5. AllowShortCaseLabelsOnASingleLine: true
  6. AllowShortFunctionsOnASingleLine: true
  7. AllowShortIfStatementsOnASingleLine: true
  8. AlwaysBreakAfterReturnType: AllDefinitions
  9. BinPackArguments: false
  10. BinPackParameters: false
  11. BreakBeforeBraces: Allman
  12. SpaceBeforeParens: Never
  13. IncludeBlocks: Regroup
  14. ReflowComments: false
  15. SortIncludes: true
  16. UseTab: ForIndentation
  17. IndentWidth: 2
  18. TabWidth: 2
  19. ColumnLimit: 100
  20. NamespaceIndentation: All