Advertisement
es3n1n

.clang-format

Jun 8th, 2022 (edited)
1,463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 3.24 KB | None | 0 0
  1. # es3n1n's clang-format -- 29 jun 2023 11:20:59 -- https://pastebin.com/4mtxipKe
  2. ---
  3. AlignAfterOpenBracket: Align
  4. AlignEscapedNewlines: Left
  5. AlignOperands: Align
  6. AlignTrailingComments: false
  7. AllowAllArgumentsOnNextLine: false
  8. AllowAllParametersOfDeclarationOnNextLine: false
  9. AllowShortBlocksOnASingleLine: Empty
  10. AllowShortCaseLabelsOnASingleLine: false
  11. AllowShortLambdasOnASingleLine: Inline
  12. AllowShortEnumsOnASingleLine: false
  13. AllowShortFunctionsOnASingleLine: Empty
  14. AllowShortIfStatementsOnASingleLine: Never
  15. AllowShortLoopsOnASingleLine: false
  16. AlwaysBreakAfterReturnType: None
  17. AlwaysBreakBeforeMultilineStrings: false
  18. AlwaysBreakTemplateDeclarations: Yes
  19. BasedOnStyle: WebKit
  20. BinPackArguments: true
  21. BinPackParameters: true
  22. BitFieldColonSpacing: None
  23. BraceWrapping:
  24.   AfterCaseLabel: false
  25.   AfterClass: false
  26.   AfterControlStatement: Never
  27.   AfterEnum: false
  28.   AfterFunction: false
  29.   AfterNamespace: false
  30.   AfterObjCDeclaration: false
  31.   AfterStruct: false
  32.   AfterUnion: false
  33.   AfterExternBlock: false
  34.   BeforeCatch: false
  35.   BeforeElse: false
  36.   IndentBraces: false
  37.   SplitEmptyFunction: false
  38.   SplitEmptyRecord: false
  39.   SplitEmptyNamespace: false
  40.   BeforeLambdaBody: false
  41.   BeforeWhile: false
  42. BreakBeforeBinaryOperators: None
  43. BreakBeforeBraces: Custom
  44. BreakBeforeInheritanceComma: false
  45. BreakInheritanceList: BeforeColon
  46. BreakBeforeConceptDeclarations: false
  47. BreakBeforeTernaryOperators: false
  48. BreakConstructorInitializers: BeforeColon
  49. BreakAfterJavaFieldAnnotations: false
  50. BreakStringLiterals: true
  51. ColumnLimit: 155
  52. CompactNamespaces: false
  53. ConstructorInitializerAllOnOneLineOrOnePerLine: false
  54. ConstructorInitializerIndentWidth : 4
  55. ContinuationIndentWidth: 4
  56. Cpp11BracedListStyle: true
  57. DeriveLineEnding: true
  58. DerivePointerAlignment: false
  59. EmptyLineBeforeAccessModifier: Always
  60. ExperimentalAutoDetectBinPacking: false
  61. FixNamespaceComments: true
  62. IncludeBlocks: Preserve
  63. IndentCaseBlocks: false
  64. IndentCaseLabels: false
  65. IndentExternBlock: Indent
  66. IndentGotoLabels: false
  67. IndentPPDirectives: BeforeHash
  68. IndentWrappedFunctionNames: false
  69. InsertTrailingCommas: None
  70. Language: Cpp
  71. NamespaceIndentation: All
  72. PenaltyBreakAssignment: 2
  73. PenaltyBreakBeforeFirstCallParameter: 19
  74. PenaltyBreakComment: 300
  75. PenaltyBreakFirstLessLess: 120
  76. PenaltyBreakString: 1000
  77. PenaltyBreakTemplateDeclaration: 10
  78. PenaltyExcessCharacter: 1000000
  79. PenaltyIndentedWhitespace: 0
  80. PenaltyReturnTypeOnItsOwnLine: 60
  81. PointerAlignment: Left
  82. ReflowComments: true
  83. SortIncludes: CaseInsensitive
  84. SortUsingDeclarations: true
  85. SpaceAfterCStyleCast: false
  86. SpaceAfterLogicalNot: false
  87. SpaceAfterTemplateKeyword: true
  88. SpaceAroundPointerQualifiers: Default
  89. SpaceBeforeAssignmentOperators: true
  90. SpaceBeforeCaseColon: false
  91. SpaceBeforeCpp11BracedList: false
  92. SpaceBeforeCtorInitializerColon: false
  93. SpaceBeforeInheritanceColon: true
  94. SpaceBeforeParens: ControlStatements
  95. SpaceBeforeRangeBasedForLoopColon: true
  96. SpaceBeforeSquareBrackets: false
  97. SpaceInEmptyBlock: true
  98. SpaceInEmptyParentheses: false
  99. SpacesBeforeTrailingComments: 1
  100. SpacesInAngles: false
  101. SpacesInContainerLiterals: true
  102. SpacesInCStyleCastParentheses: false
  103. SpacesInConditionalStatement: false
  104. SpacesInParentheses: false
  105. SpacesInSquareBrackets: false
  106. Standard: Latest
  107. TabWidth: 8
  108. UseCRLF: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement