You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.5 KiB

  1. BasedOnStyle: LLVM
  2. AccessModifierOffset: -4
  3. AlignAfterOpenBracket: DontAlign
  4. AlignConsecutiveDeclarations: true
  5. AlignEscapedNewlinesLeft: true
  6. AlignOperands: true
  7. AlignTrailingComments: true
  8. AllowAllParametersOfDeclarationOnNextLine: true
  9. AllowShortBlocksOnASingleLine: false
  10. AllowShortCaseLabelsOnASingleLine: false
  11. AllowShortFunctionsOnASingleLine: false
  12. AllowShortIfStatementsOnASingleLine: false
  13. AllowShortLoopsOnASingleLine: false
  14. AlwaysBreakAfterReturnType: None
  15. AlwaysBreakBeforeMultilineStrings: true
  16. AlwaysBreakTemplateDeclarations: true
  17. BinPackArguments: true
  18. BinPackParameters: true
  19. BreakBeforeBinaryOperators: NonAssignment
  20. BreakBeforeBraces: Allman
  21. BreakBeforeTernaryOperators: false
  22. BreakConstructorInitializersBeforeComma: false
  23. BreakStringLiterals: false
  24. ColumnLimit: 100
  25. ConstructorInitializerAllOnOneLineOrOnePerLine: true
  26. ConstructorInitializerIndentWidth: 8
  27. ContinuationIndentWidth: 8
  28. Cpp11BracedListStyle: false
  29. DerivePointerAlignment: false
  30. DisableFormat: false
  31. ForEachMacros: [ BOOST_FOREACH ]
  32. IndentCaseLabels: false
  33. IndentWidth: 4
  34. IndentWrappedFunctionNames: false
  35. KeepEmptyLinesAtTheStartOfBlocks: true
  36. Language: Cpp
  37. MaxEmptyLinesToKeep: 2
  38. NamespaceIndentation: Inner
  39. PointerAlignment: Left
  40. ReflowComments: false
  41. SortIncludes: true
  42. SpaceAfterCStyleCast: true
  43. SpaceBeforeAssignmentOperators: true
  44. SpaceBeforeParens: Never
  45. SpaceInEmptyParentheses: false
  46. SpacesBeforeTrailingComments: 1
  47. SpacesInAngles: false
  48. SpacesInCStyleCastParentheses: false
  49. SpacesInParentheses: true
  50. SpacesInSquareBrackets: false
  51. Standard: Cpp11
  52. TabWidth: 4
  53. UseTab: Never