Advertisement
Guest User

Untitled

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