.clang-format 1001 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. BasedOnStyle: Chromium
  2. AlignTrailingComments: true
  3. BraceWrapping:
  4. AfterClass: true
  5. AfterControlStatement: true
  6. AfterEnum: true
  7. AfterFunction: true
  8. AfterNamespace: true
  9. AfterObjCDeclaration: true
  10. AfterStruct: true
  11. AfterUnion: false
  12. BeforeCatch: true
  13. BeforeElse: true
  14. IndentBraces: false
  15. BreakBeforeBraces: Allman
  16. ColumnLimit: 0
  17. IndentCaseLabels: true
  18. IndentWidth: 4
  19. KeepEmptyLinesAtTheStartOfBlocks: false
  20. MaxEmptyLinesToKeep: 1
  21. NamespaceIndentation: None
  22. ObjCBlockIndentWidth: 4
  23. ObjCSpaceAfterProperty: true
  24. ObjCSpaceBeforeProtocolList: true
  25. PointerAlignment: Right
  26. SpaceAfterCStyleCast: false
  27. SpaceBeforeAssignmentOperators: true
  28. SpaceBeforeParens: ControlStatements
  29. SpaceInEmptyParentheses: false
  30. SpacesBeforeTrailingComments: 1
  31. SpacesInAngles: false
  32. SpacesInContainerLiterals: true
  33. SpacesInCStyleCastParentheses: false
  34. SpacesInParentheses: false
  35. SpacesInSquareBrackets: false
  36. Standard: Auto
  37. TabWidth: 4
  38. UseTab: Never