Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. # Clang version 9.0.0
  2. Language: Cpp
  3. AccessModifierOffset: -4
  4. AllowShortBlocksOnASingleLine: false
  5. AlwaysBreakTemplateDeclarations: Yes
  6. AlignConsecutiveAssignments: false
  7. AlignConsecutiveDeclarations: false
  8. AlignOperands: false
  9. AlignTrailingComments: true
  10. AlignAfterOpenBracket: DontAlign
  11. AllowAllConstructorInitializersOnNextLine: false
  12. ConstructorInitializerAllOnOneLineOrOnePerLine: true
  13. AllowShortCaseLabelsOnASingleLine: true
  14. AllowShortIfStatementsOnASingleLine: false
  15. AllowShortFunctionsOnASingleLine: false
  16. BinPackArguments: false
  17. BreakBeforeBinaryOperators: NonAssignment
  18. BreakBeforeTernaryOperators: false
  19. BreakConstructorInitializers: AfterColon
  20. BreakInheritanceList: AfterColon
  21. BreakStringLiterals: false
  22. ColumnLimit: 0
  23. CompactNamespaces: false
  24. ContinuationIndentWidth: 4
  25. Cpp11BracedListStyle: false
  26. ExperimentalAutoDetectBinPacking: false
  27. IndentCaseLabels: true
  28. IndentPPDirectives: BeforeHash
  29. IndentWidth: 4
  30. MaxEmptyLinesToKeep: 1
  31. NamespaceIndentation: All
  32. PointerAlignment: Left
  33. ReflowComments: false
  34. SpaceAfterCStyleCast: false
  35. SpaceAfterTemplateKeyword: true
  36. SpacesInAngles: false
  37. SpacesInContainerLiterals: false
  38. SpacesInParentheses: false
  39. SpacesInSquareBrackets: false
  40. Standard: Cpp11
  41. TabWidth: 4
  42. UseTab: Always
  43.  
  44. BreakBeforeBraces: Custom
  45. BraceWrapping:
  46. AfterCaseLabel: false
  47. AfterClass: true
  48. AfterControlStatement: true
  49. AfterEnum: true
  50. AfterFunction: true
  51. AfterNamespace: true
  52. AfterStruct: true
  53. AfterUnion: true
  54. AfterExternBlock: true
  55. BeforeCatch: true
  56. BeforeElse: true
  57. IndentBraces: false
  58. SplitEmptyFunction: false
  59. SplitEmptyRecord: false
  60. SplitEmptyNamespace: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement