Advertisement
Guest User

Untitled

a guest
May 3rd, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. ---
  2. Language: Cpp
  3. # BasedOnStyle: WebKit
  4. AccessModifierOffset: -4
  5. ConstructorInitializerIndentWidth: 4
  6. AlignEscapedNewlinesLeft: false
  7. AlignTrailingComments: false
  8. AllowAllParametersOfDeclarationOnNextLine: true
  9. AllowShortBlocksOnASingleLine: false
  10. AllowShortCaseLabelsOnASingleLine: false
  11. AllowShortIfStatementsOnASingleLine: false
  12. AllowShortLoopsOnASingleLine: false
  13. AllowShortFunctionsOnASingleLine: All
  14. AlwaysBreakAfterDefinitionReturnType: false
  15. AlwaysBreakTemplateDeclarations: false
  16. AlwaysBreakBeforeMultilineStrings: false
  17. BreakBeforeBinaryOperators: All
  18. BreakBeforeTernaryOperators: true
  19. BreakConstructorInitializersBeforeComma: true
  20. BinPackParameters: true
  21. BinPackArguments: true
  22. ColumnLimit: 0
  23. ConstructorInitializerAllOnOneLineOrOnePerLine: false
  24. DerivePointerAlignment: false
  25. ExperimentalAutoDetectBinPacking: false
  26. IndentCaseLabels: false
  27. IndentWrappedFunctionNames: false
  28. IndentFunctionDeclarationAfterType: false
  29. MaxEmptyLinesToKeep: 1
  30. KeepEmptyLinesAtTheStartOfBlocks: true
  31. NamespaceIndentation: Inner
  32. ObjCSpaceAfterProperty: true
  33. ObjCSpaceBeforeProtocolList: true
  34. PenaltyBreakBeforeFirstCallParameter: 19
  35. PenaltyBreakComment: 300
  36. PenaltyBreakString: 1000
  37. PenaltyBreakFirstLessLess: 120
  38. PenaltyExcessCharacter: 1000000
  39. PenaltyReturnTypeOnItsOwnLine: 60
  40. PointerAlignment: Right
  41. SpacesBeforeTrailingComments: 1
  42. Cpp11BracedListStyle: false
  43. Standard: Cpp03
  44. IndentWidth: 4
  45. TabWidth: 8
  46. UseTab: Never
  47. BreakBeforeBraces: Linux
  48. SpacesInParentheses: false
  49. SpacesInSquareBrackets: false
  50. SpacesInAngles: false
  51. SpaceInEmptyParentheses: false
  52. SpacesInCStyleCastParentheses: false
  53. SpaceAfterCStyleCast: false
  54. SpacesInContainerLiterals: false
  55. SpaceBeforeAssignmentOperators: true
  56. ContinuationIndentWidth: 4
  57. CommentPragmas: '^ IWYU pragma:'
  58. ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
  59. SpaceBeforeParens: ControlStatements
  60. DisableFormat: false
  61. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement