.clang-format 552 B

123456789101112131415161718192021
  1. BasedOnStyle: WebKit
  2. AlignAfterOpenBracket: Align
  3. AlignEscapedNewlines: DontAlign
  4. AlignOperands: true
  5. BraceWrapping:
  6. AfterFunction: true
  7. BeforeElse: true
  8. BreakBeforeBinaryOperators: None
  9. BreakBeforeBraces: Custom
  10. BreakBeforeInheritanceComma: true
  11. BreakConstructorInitializers: BeforeComma
  12. DerivePointerAlignment: false
  13. IndentCaseLabels: true
  14. MaxEmptyLinesToKeep: 1
  15. NamespaceIndentation: All
  16. PointerAlignment: Right
  17. SortIncludes: false
  18. SpaceBeforeCtorInitializerColon: true
  19. SpaceBeforeParens: Never
  20. TabWidth: 4
  21. UseTab: ForContinuationAndIndentation