.clang-format 793 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. AlignEscapedNewlines: Left
  3. AlignTrailingComments:
  4. Kind: Always
  5. OverEmptyLines: 0
  6. BasedOnStyle: WebKit
  7. BraceWrapping:
  8. AfterFunction: true
  9. BreakBeforeBraces: Custom
  10. BreakBeforeInheritanceComma: true
  11. BreakConstructorInitializers: BeforeComma
  12. IndentPPDirectives: AfterHash
  13. IndentRequiresClause: false
  14. InsertNewlineAtEOF: true
  15. LineEnding: LF
  16. NamespaceIndentation: None
  17. QualifierAlignment: Right
  18. RemoveSemicolon: true
  19. RequiresClausePosition: WithFollowing
  20. RequiresExpressionIndentation: OuterScope
  21. SpaceAfterTemplateKeyword: false
  22. ---
  23. Language: ObjC
  24. BinPackParameters: false
  25. BraceWrapping:
  26. AfterObjCDeclaration: true
  27. ObjCBinPackProtocolList: Never
  28. ObjCBlockIndentWidth: 4
  29. ObjCBreakBeforeNestedBlockParam: true
  30. ObjCSpaceAfterProperty: true
  31. ObjCSpaceBeforeProtocolList: true
  32. ...