.clang-format 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ---
  2. Language: Cpp
  3. # BasedOnStyle: LLVM
  4. AccessModifierOffset: -2
  5. AlignAfterOpenBracket: true
  6. AlignEscapedNewlinesLeft: false
  7. AlignOperands: true
  8. AlignTrailingComments: true
  9. AllowAllParametersOfDeclarationOnNextLine: true
  10. AllowShortBlocksOnASingleLine: false
  11. AllowShortCaseLabelsOnASingleLine: false
  12. AllowShortIfStatementsOnASingleLine: false
  13. AllowShortLoopsOnASingleLine: false
  14. AllowShortFunctionsOnASingleLine: All
  15. AlwaysBreakAfterDefinitionReturnType: true
  16. AlwaysBreakTemplateDeclarations: false
  17. AlwaysBreakBeforeMultilineStrings: false
  18. BreakBeforeBinaryOperators: None
  19. BreakBeforeTernaryOperators: true
  20. BreakConstructorInitializersBeforeComma: false
  21. BinPackParameters: true
  22. BinPackArguments: true
  23. ColumnLimit: 0
  24. ConstructorInitializerAllOnOneLineOrOnePerLine: false
  25. ConstructorInitializerIndentWidth: 4
  26. DerivePointerAlignment: false
  27. ExperimentalAutoDetectBinPacking: false
  28. IndentCaseLabels: false
  29. IndentWrappedFunctionNames: false
  30. IndentFunctionDeclarationAfterType: false
  31. MaxEmptyLinesToKeep: 1
  32. KeepEmptyLinesAtTheStartOfBlocks: true
  33. NamespaceIndentation: None
  34. ObjCBlockIndentWidth: 2
  35. ObjCSpaceAfterProperty: false
  36. ObjCSpaceBeforeProtocolList: true
  37. PenaltyBreakBeforeFirstCallParameter: 19
  38. PenaltyBreakComment: 300
  39. PenaltyBreakString: 1000
  40. PenaltyBreakFirstLessLess: 120
  41. PenaltyExcessCharacter: 1000000
  42. PenaltyReturnTypeOnItsOwnLine: 60
  43. PointerAlignment: Left
  44. SpacesBeforeTrailingComments: 1
  45. Cpp11BracedListStyle: true
  46. Standard: Cpp11
  47. IndentWidth: 8
  48. TabWidth: 8
  49. UseTab: ForIndentation
  50. BreakBeforeBraces: Linux
  51. SortIncludes: false
  52. SpacesInParentheses: false
  53. SpacesInSquareBrackets: false
  54. SpacesInAngles: false
  55. SpaceInEmptyParentheses: false
  56. SpacesInCStyleCastParentheses: false
  57. SpaceAfterCStyleCast: false
  58. SpacesInContainerLiterals: true
  59. SpaceBeforeAssignmentOperators: true
  60. ContinuationIndentWidth: 4
  61. CommentPragmas: '^ IWYU pragma:'
  62. ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
  63. SpaceBeforeParens: Never
  64. DisableFormat: false
  65. ...