Advertisement
Guest User

Untitled

a guest
Jan 29th, 2022
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. ---
  2. Language: Cpp
  3. BasedOnStyle: LLVM
  4. AccessModifierOffset: -4
  5. AlignConsecutiveAssignments: true
  6. AlignConsecutiveDeclarations: true
  7. AlignOperands: false
  8. AllowShortBlocksOnASingleLine: false
  9. AllowShortFunctionsOnASingleLine: None
  10. AllowShortIfStatementsOnASingleLine: false
  11. AlwaysBreakTemplateDeclarations: Yes
  12. BinPackArguments: false
  13. BraceWrapping:
  14. AfterCaseLabel: true
  15. AfterClass: true
  16. AfterControlStatement: true
  17. AfterEnum: true
  18. AfterFunction: true
  19. AfterNamespace: true
  20. AfterStruct: true
  21. AfterUnion: true
  22. AfterExternBlock: true
  23. BeforeCatch: true
  24. BeforeElse: true
  25. BeforeLambdaBody: true
  26. BeforeWhile: false
  27. IndentBraces: false
  28. SplitEmptyFunction: false
  29. SplitEmptyRecord: false
  30. SplitEmptyNamespace: false
  31. BreakBeforeBraces: Custom
  32. BreakBeforeTernaryOperators: false
  33. BreakConstructorInitializers: AfterColon
  34. ColumnLimit: 0
  35. ConstructorInitializerAllOnOneLineOrOnePerLine: true
  36. Cpp11BracedListStyle: false
  37. IncludeCategories:
  38. - Regex: '^<.*'
  39. Priority: 1
  40. - Regex: '^".*'
  41. Priority: 2
  42. - Regex: '.*'
  43. Priority: 3
  44. IncludeIsMainRegex: '([-_](test|unittest))?$'
  45. IndentCaseLabels: true
  46. IndentWidth: 4
  47. MacroBlockBegin: ''
  48. MacroBlockEnd: ''
  49. NamespaceIndentation: All
  50. SpaceAfterTemplateKeyword: false
  51. SpaceBeforeInheritanceColon: false
  52. SpaceBeforeParens: Never
  53. SpaceInEmptyParentheses: true
  54. SpacesInAngles: true
  55. SpacesInConditionalStatement: true
  56. SpacesInCStyleCastParentheses: true
  57. SpacesInParentheses: true
  58. SpacesInSquareBrackets: true
  59. TabWidth: 4
  60. UseTab: Always
  61. ...
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement