.clang-format 861 B

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. AllowShortBlocksOnASingleLine: false
  3. AllowShortCaseLabelsOnASingleLine: false
  4. AllowShortFunctionsOnASingleLine: None
  5. BreakBeforeBraces: Custom
  6. BraceWrapping:
  7. AfterClass: true
  8. AfterControlStatement: true
  9. AfterEnum: true
  10. AfterFunction: true
  11. AfterNamespace: true
  12. AfterObjCDeclaration: true
  13. AfterStruct: true
  14. AfterUnion: true
  15. AfterExternBlock: true
  16. BeforeCatch: true
  17. BeforeElse: true
  18. IndentBraces: false
  19. SplitEmptyFunction: true
  20. SplitEmptyRecord: true
  21. SplitEmptyNamespace: true
  22. Cpp11BracedListStyle: false
  23. FixNamespaceComments: true
  24. IndentPPDirectives: AfterHash
  25. Language: Cpp
  26. NamespaceIndentation: All
  27. SpaceAfterCStyleCast: true
  28. Standard: Cpp11
  29. UseTab: ForIndentation
  30. TabWidth: 2
  31. PointerAlignment: Left
  32. ColumnLimit: 100
  33. AlwaysBreakTemplateDeclarations: Yes
  34. MacroBlockBegin: "^JCE_STRUCT.*$"
  35. MacroBlockEnd: "^END_JCE_STRUCT$"
  36. ...