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.

54 lines
1.6 KiB

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