Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. ---
  2. # Language: ObjC
  3. BasedOnStyle: Google
  4. AccessModifierOffset: 0
  5. ConstructorInitializerIndentWidth: 4
  6. SortIncludes: false
  7.  
  8. # 连续赋值时,对齐所有等号
  9. # AlignConsecutiveAssignments: true
  10. AlignAfterOpenBracket: true
  11. AlignEscapedNewlinesLeft: true
  12. AlignOperands: false
  13. AlignTrailingComments: true
  14.  
  15. AllowAllParametersOfDeclarationOnNextLine: false
  16. AllowShortBlocksOnASingleLine: false
  17. AllowShortCaseLabelsOnASingleLine: false
  18. AllowShortFunctionsOnASingleLine: false
  19. AllowShortIfStatementsOnASingleLine: false
  20. # AllowShortFunctionsOnASingleLine: All
  21. AllowShortLoopsOnASingleLine: false
  22.  
  23. AlwaysBreakAfterDefinitionReturnType: false
  24. AlwaysBreakTemplateDeclarations: false
  25. AlwaysBreakBeforeMultilineStrings: false
  26.  
  27. BreakBeforeBinaryOperators: None
  28. BreakBeforeTernaryOperators: false
  29. BreakConstructorInitializersBeforeComma: false
  30.  
  31. BinPackArguments: true
  32. BinPackParameters: true
  33. ColumnLimit: 110
  34. ConstructorInitializerAllOnOneLineOrOnePerLine: true
  35. DerivePointerAlignment: false
  36. ExperimentalAutoDetectBinPacking: false
  37. IndentCaseLabels: true
  38. IndentWrappedFunctionNames: false
  39. IndentFunctionDeclarationAfterType: false
  40. MaxEmptyLinesToKeep: 1 # 连续的空行保留几行
  41. KeepEmptyLinesAtTheStartOfBlocks: false
  42. NamespaceIndentation: Inner
  43. ObjCBlockIndentWidth: 4
  44. ObjCSpaceAfterProperty: true
  45. ObjCSpaceBeforeProtocolList: true
  46. PenaltyBreakBeforeFirstCallParameter: 10000
  47. PenaltyBreakComment: 300
  48. PenaltyBreakString: 1000
  49. PenaltyBreakFirstLessLess: 120
  50. PenaltyExcessCharacter: 1000000
  51. PenaltyReturnTypeOnItsOwnLine: 200
  52. PointerAlignment: Right
  53. SpacesBeforeTrailingComments: 1
  54. Cpp11BracedListStyle: true
  55. Standard: Auto
  56. IndentWidth: 4
  57. TabWidth: 4
  58. UseTab: Never
  59. BreakBeforeBraces: Custom
  60. BraceWrapping:
  61. AfterClass: true
  62. AfterControlStatement: false
  63. AfterEnum: false
  64. AfterFunction: false
  65. AfterNamespace: true
  66. AfterObjCDeclaration: false # ObjC定义后面是否换行
  67. AfterStruct: false
  68. AfterUnion: false
  69. BeforeCatch: false
  70. BeforeElse: false
  71. IndentBraces: false
  72.  
  73. SpacesInParentheses: false
  74. SpacesInSquareBrackets: false
  75. SpacesInAngles: false
  76. SpaceInEmptyParentheses: false
  77. SpacesInCStyleCastParentheses: false
  78. SpaceAfterCStyleCast: false
  79. SpacesInContainerLiterals: true
  80. SpaceBeforeAssignmentOperators: true
  81.  
  82. ContinuationIndentWidth: 4
  83. CommentPragmas: '^ IWYU pragma:'
  84. ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ]
  85. SpaceBeforeParens: ControlStatements
  86. DisableFormat: false
  87. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement