Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. ---
  2. Language: Cpp
  3. # BasedOnStyle: LLVM
  4. AccessModifierOffset: -2
  5. ConstructorInitializerIndentWidth: 4
  6. AlignEscapedNewlinesLeft: false
  7. AlignTrailingComments: true
  8. AllowAllParametersOfDeclarationOnNextLine: true
  9. AllowShortIfStatementsOnASingleLine: false
  10. AllowShortLoopsOnASingleLine: false
  11. AllowShortFunctionsOnASingleLine: false
  12. AlwaysBreakTemplateDeclarations: false
  13. AlwaysBreakBeforeMultilineStrings: false
  14. BreakBeforeBinaryOperators: false
  15. BreakBeforeTernaryOperators: true
  16. BreakConstructorInitializersBeforeComma: false
  17. BinPackParameters: true
  18. ColumnLimit: 0
  19. IndentWidth: 4
  20. ConstructorInitializerAllOnOneLineOrOnePerLine: false
  21. DerivePointerBinding: false
  22. ExperimentalAutoDetectBinPacking: false
  23. IndentCaseLabels: true
  24. MaxEmptyLinesToKeep: 1
  25. NamespaceIndentation: None
  26. ObjCSpaceAfterProperty: true
  27. ObjCSpaceBeforeProtocolList: true
  28. PenaltyBreakBeforeFirstCallParameter: 19
  29. PenaltyBreakComment: 300
  30. PenaltyBreakString: 1000
  31. PenaltyBreakFirstLessLess: 120
  32. PenaltyExcessCharacter: 1000000
  33. PenaltyReturnTypeOnItsOwnLine: 60
  34. PointerBindsToType: false
  35. SpacesBeforeTrailingComments: 1
  36. Cpp11BracedListStyle: true
  37. Standard: Cpp11
  38. TabWidth: 8
  39. UseTab: Never
  40. BreakBeforeBraces: Attach
  41. IndentFunctionDeclarationAfterType: true
  42. SpacesInParentheses: false
  43. SpacesInAngles: false
  44. SpaceInEmptyParentheses: false
  45. SpacesInCStyleCastParentheses: false
  46. SpacesInContainerLiterals: true
  47. SpaceBeforeAssignmentOperators: true
  48. ContinuationIndentWidth: 4
  49. CommentPragmas: '^ IWYU pragma:'
  50. SpaceBeforeParens: ControlStatements
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement