.clang-format 874 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. BasedOnStyle: WebKit
  3. AlignAfterOpenBracket: Align
  4. AllowAllParametersOfDeclarationOnNextLine: 'false'
  5. AllowShortFunctionsOnASingleLine: Inline
  6. AllowShortIfStatementsOnASingleLine: 'false'
  7. AllowShortLoopsOnASingleLine: 'false'
  8. AlwaysBreakAfterDefinitionReturnType: All
  9. AlwaysBreakTemplateDeclarations: Yes
  10. BinPackArguments: 'false'
  11. BinPackParameters: 'false'
  12. BreakBeforeBraces: Allman
  13. BreakBeforeTernaryOperators: 'true'
  14. BreakConstructorInitializers: BeforeComma
  15. ColumnLimit: 120
  16. Cpp11BracedListStyle: 'false'
  17. FixNamespaceComments: 'true'
  18. IncludeBlocks: Preserve
  19. IndentWidth: '4'
  20. MaxEmptyLinesToKeep: '2'
  21. NamespaceIndentation: Inner
  22. PointerAlignment: Left
  23. ReflowComments: 'false'
  24. SortIncludes: 'true'
  25. SpaceAfterCStyleCast: 'false'
  26. SpacesBeforeTrailingComments: '2'
  27. SpacesInAngles: 'true'
  28. SpacesInParentheses: 'true'
  29. SpacesInSquareBrackets: 'true'
  30. Standard: Cpp11
  31. ...