Guest User

Untitled

a guest
Jun 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.91 KB | None | 0 0
  1. ---
  2. Language: Cpp
  3. # BasedOnStyle: WebKit
  4. AccessModifierOffset: -4
  5. AlignAfterOpenBracket: DontAlign
  6. AlignConsecutiveAssignments: false
  7. AlignConsecutiveDeclarations: false
  8. AlignEscapedNewlinesLeft: false
  9. AlignOperands: false
  10. AlignTrailingComments: false
  11. AllowAllParametersOfDeclarationOnNextLine: true
  12. AllowShortBlocksOnASingleLine: false
  13. AllowShortCaseLabelsOnASingleLine: false
  14. AllowShortFunctionsOnASingleLine: All
  15. AllowShortIfStatementsOnASingleLine: false
  16. AllowShortLoopsOnASingleLine: false
  17. AlwaysBreakAfterDefinitionReturnType: None
  18. AlwaysBreakAfterReturnType: None
  19. AlwaysBreakBeforeMultilineStrings: false
  20. AlwaysBreakTemplateDeclarations: false
  21. BinPackArguments: true
  22. BinPackParameters: true
  23. BraceWrapping:
  24. AfterClass: true
  25. AfterControlStatement: true
  26. AfterEnum: true
  27. AfterFunction: true
  28. AfterNamespace: true
  29. AfterObjCDeclaration: false
  30. AfterStruct: true
  31. AfterUnion: true
  32. BeforeCatch: true
  33. BeforeElse: true
  34. IndentBraces: false
  35. BreakBeforeBinaryOperators: All
  36. BreakBeforeBraces: Custom
  37. BreakBeforeTernaryOperators: true
  38. BreakConstructorInitializersBeforeComma: true
  39. BreakAfterJavaFieldAnnotations: false
  40. BreakStringLiterals: true
  41. ColumnLimit: 0
  42. CommentPragmas: '^ IWYU pragma:'
  43. # BreakBeforeInheritanceComma: true
  44. ConstructorInitializerAllOnOneLineOrOnePerLine: false
  45. ConstructorInitializerIndentWidth: 4
  46. ContinuationIndentWidth: 4
  47. Cpp11BracedListStyle: false
  48. DerivePointerAlignment: false
  49. DisableFormat: false
  50. ExperimentalAutoDetectBinPacking: false
  51. # FixNamespaceComments: false
  52. ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
  53. IncludeCategories:
  54. - Regex: '^"(stdafx|PrecompiledHeader)'
  55. Priority: -2
  56. - Regex: '^"(llvm|llvm-c|clang|clang-c)/'
  57. Priority: 4
  58. - Regex: '^(<|"(gtest|isl|json)/)'
  59. Priority: 3
  60. - Regex: '.*'
  61. Priority: 2
  62. IncludeIsMainRegex: '$'
  63. IndentCaseLabels: false
  64. IndentWidth: 4
  65. IndentWrappedFunctionNames: false
  66. JavaScriptQuotes: Leave
  67. JavaScriptWrapImports: true
  68. KeepEmptyLinesAtTheStartOfBlocks: true
  69. MacroBlockBegin: 'BEGIN_MSG_MAP'
  70. MacroBlockEnd: 'END_MSG_MAP'
  71. MaxEmptyLinesToKeep: 1
  72. NamespaceIndentation: None
  73. ObjCBlockIndentWidth: 4
  74. ObjCSpaceAfterProperty: true
  75. ObjCSpaceBeforeProtocolList: true
  76. PenaltyBreakBeforeFirstCallParameter: 19
  77. PenaltyBreakComment: 300
  78. PenaltyBreakFirstLessLess: 120
  79. PenaltyBreakString: 1000
  80. PenaltyExcessCharacter: 100
  81. PenaltyReturnTypeOnItsOwnLine: 10000000
  82. PointerAlignment: Left
  83. ReflowComments: true
  84. SortIncludes: true
  85. SpaceAfterCStyleCast: false
  86. SpaceAfterTemplateKeyword: false
  87. SpaceBeforeAssignmentOperators: true
  88. SpaceBeforeParens: ControlStatements
  89. SpaceInEmptyParentheses: false
  90. SpacesBeforeTrailingComments: 1
  91. SpacesInAngles: false
  92. SpacesInContainerLiterals: true
  93. SpacesInCStyleCastParentheses: false
  94. SpacesInParentheses: false
  95. SpacesInSquareBrackets: false
  96. Standard: Cpp11
  97. TabWidth: 4
  98. UseTab: Always
  99. ...
Advertisement
Add Comment
Please, Sign In to add comment