Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. BasedOnStyle: LLVM
  2. AccessModifierOffset: -4
  3. AlignAfterOpenBracket: Align
  4. AlignConsecutiveAssignments: false
  5. AlignConsecutiveDeclarations: false
  6. AlignEscapedNewlines: Left
  7. AlignOperands: true
  8. AlignTrailingComments: false
  9. AllowAllParametersOfDeclarationOnNextLine: true
  10. AllowShortBlocksOnASingleLine: true
  11. AllowShortCaseLabelsOnASingleLine: false
  12. AllowShortFunctionsOnASingleLine: None
  13. AllowShortIfStatementsOnASingleLine: false
  14. AlwaysBreakAfterReturnType: None
  15. AlwaysBreakBeforeMultilineStrings: false
  16. AlwaysBreakTemplateDeclarations: true
  17. BinPackArguments: false
  18. BinPackParameters: true
  19. BreakBeforeBraces: Custom
  20. BraceWrapping:
  21. AfterClass: true
  22. AfterControlStatement: true
  23. AfterEnum: false
  24. AfterFunction: true
  25. AfterNamespace: true
  26. AfterStruct: true
  27. AfterUnion: true
  28. BeforeCatch: true
  29. BeforeElse: true
  30. SplitEmptyFunction: false
  31. SplitEmptyRecord: false
  32. SplitEmptyNamespace: false
  33. BreakAfterJavaFieldAnnotations: true
  34. BreakBeforeBinaryOperators: None
  35. BreakBeforeInheritanceComma: false
  36. BreakBeforeTernaryOperators: false
  37. BreakStringLiterals: false
  38. ColumnLimit: 120
  39. CompactNamespaces: false
  40. ConstructorInitializerAllOnOneLineOrOnePerLine: false
  41. Cpp11BracedListStyle: true
  42. DerivePointerAlignment: false
  43. FixNamespaceComments: true
  44. IndentCaseLabels: true
  45. IndentPPDirectives: AfterHash
  46. IndentWidth: 4
  47. IndentWrappedFunctionNames: true
  48. KeepEmptyLinesAtTheStartOfBlocks: false
  49. Language: Cpp
  50. NamespaceIndentation: None
  51. PointerAlignment: Right
  52. ReflowComments: false
  53. SortIncludes: true
  54. SortUsingDeclarations: true
  55. SpaceAfterCStyleCast: false
  56. SpaceAfterTemplateKeyword: false
  57. SpaceBeforeAssignmentOperators: true
  58. SpaceBeforeParens: ControlStatements
  59. SpaceInEmptyParentheses: false
  60. SpacesInAngles: false
  61. SpacesInCStyleCastParentheses: false
  62. SpacesInContainerLiterals: true
  63. SpacesInParentheses: false
  64. SpacesInSquareBrackets: false
  65. Standard: Auto
  66. TabWidth: 4
  67. UseTab: ForIndentation
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement