.clang-format 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # clang-format configuration file. Intended for clang-format >= 4.
  4. #
  5. # For more information, see:
  6. #
  7. # Documentation/process/clang-format.rst
  8. # https://clang.llvm.org/docs/ClangFormat.html
  9. # https://clang.llvm.org/docs/ClangFormatStyleOptions.html
  10. #
  11. ---
  12. AccessModifierOffset: -4
  13. AlignAfterOpenBracket: Align
  14. AlignConsecutiveAssignments: false
  15. AlignConsecutiveDeclarations: false
  16. #AlignEscapedNewlines: Left # Unknown to clang-format-4.0
  17. AlignOperands: true
  18. AlignTrailingComments: false
  19. AllowAllParametersOfDeclarationOnNextLine: false
  20. AllowShortBlocksOnASingleLine: false
  21. AllowShortCaseLabelsOnASingleLine: false
  22. AllowShortFunctionsOnASingleLine: None
  23. AllowShortIfStatementsOnASingleLine: false
  24. AllowShortLoopsOnASingleLine: false
  25. AlwaysBreakAfterDefinitionReturnType: None
  26. AlwaysBreakAfterReturnType: None
  27. AlwaysBreakBeforeMultilineStrings: false
  28. AlwaysBreakTemplateDeclarations: false
  29. BinPackArguments: true
  30. BinPackParameters: true
  31. BraceWrapping:
  32. AfterClass: false
  33. AfterControlStatement: false
  34. AfterEnum: false
  35. AfterFunction: true
  36. AfterNamespace: true
  37. AfterObjCDeclaration: false
  38. AfterStruct: false
  39. AfterUnion: false
  40. #AfterExternBlock: false # Unknown to clang-format-5.0
  41. BeforeCatch: false
  42. BeforeElse: false
  43. IndentBraces: false
  44. #SplitEmptyFunction: true # Unknown to clang-format-4.0
  45. #SplitEmptyRecord: true # Unknown to clang-format-4.0
  46. #SplitEmptyNamespace: true # Unknown to clang-format-4.0
  47. BreakBeforeBinaryOperators: None
  48. BreakBeforeBraces: Custom
  49. #BreakBeforeInheritanceComma: false # Unknown to clang-format-4.0
  50. BreakBeforeTernaryOperators: false
  51. BreakConstructorInitializersBeforeComma: false
  52. #BreakConstructorInitializers: BeforeComma # Unknown to clang-format-4.0
  53. BreakAfterJavaFieldAnnotations: false
  54. BreakStringLiterals: false
  55. ColumnLimit: 100
  56. CommentPragmas: '^ IWYU pragma:'
  57. #CompactNamespaces: false # Unknown to clang-format-4.0
  58. ConstructorInitializerAllOnOneLineOrOnePerLine: false
  59. ConstructorInitializerIndentWidth: 8
  60. ContinuationIndentWidth: 8
  61. Cpp11BracedListStyle: false
  62. DerivePointerAlignment: false
  63. DisableFormat: false
  64. ExperimentalAutoDetectBinPacking: false
  65. #FixNamespaceComments: false # Unknown to clang-format-4.0
  66. # Taken from:
  67. # git grep -h '^#define [^[:space:]]*FOR_EACH[^[:space:]]*(' include/ \
  68. # | sed "s,^#define \([^[:space:]]*FOR_EACH[^[:space:]]*\)(.*$, - '\1'," \
  69. # | sort | uniq
  70. ForEachMacros:
  71. - 'FOR_EACH'
  72. - 'FOR_EACH_FIXED_ARG'
  73. - 'RB_FOR_EACH'
  74. - 'RB_FOR_EACH_CONTAINER'
  75. - 'SYS_DLIST_FOR_EACH_CONTAINER'
  76. - 'SYS_DLIST_FOR_EACH_CONTAINER_SAFE'
  77. - 'SYS_DLIST_FOR_EACH_NODE'
  78. - 'SYS_DLIST_FOR_EACH_NODE_SAFE'
  79. - 'SYS_SFLIST_FOR_EACH_CONTAINER'
  80. - 'SYS_SFLIST_FOR_EACH_CONTAINER_SAFE'
  81. - 'SYS_SFLIST_FOR_EACH_NODE'
  82. - 'SYS_SFLIST_FOR_EACH_NODE_SAFE'
  83. - 'SYS_SLIST_FOR_EACH_CONTAINER'
  84. - 'SYS_SLIST_FOR_EACH_CONTAINER_SAFE'
  85. - 'SYS_SLIST_FOR_EACH_NODE'
  86. - 'SYS_SLIST_FOR_EACH_NODE_SAFE'
  87. - 'Z_GENLIST_FOR_EACH_CONTAINER'
  88. - 'Z_GENLIST_FOR_EACH_CONTAINER_SAFE'
  89. - 'Z_GENLIST_FOR_EACH_NODE'
  90. - 'Z_GENLIST_FOR_EACH_NODE_SAFE'
  91. - '_WAIT_Q_FOR_EACH'
  92. #IncludeBlocks: Preserve # Unknown to clang-format-5.0
  93. IncludeCategories:
  94. - Regex: '.*'
  95. Priority: 1
  96. IncludeIsMainRegex: '(Test)?$'
  97. IndentCaseLabels: false
  98. #IndentPPDirectives: None # Unknown to clang-format-5.0
  99. IndentWidth: 8
  100. IndentWrappedFunctionNames: false
  101. JavaScriptQuotes: Leave
  102. JavaScriptWrapImports: true
  103. KeepEmptyLinesAtTheStartOfBlocks: false
  104. MacroBlockBegin: ''
  105. MacroBlockEnd: ''
  106. MaxEmptyLinesToKeep: 1
  107. NamespaceIndentation: Inner
  108. #ObjCBinPackProtocolList: Auto # Unknown to clang-format-5.0
  109. ObjCBlockIndentWidth: 8
  110. ObjCSpaceAfterProperty: true
  111. ObjCSpaceBeforeProtocolList: true
  112. # Taken from git's rules
  113. #PenaltyBreakAssignment: 10 # Unknown to clang-format-4.0
  114. PenaltyBreakBeforeFirstCallParameter: 30
  115. PenaltyBreakComment: 10
  116. PenaltyBreakFirstLessLess: 0
  117. PenaltyBreakString: 10
  118. PenaltyExcessCharacter: 100
  119. PenaltyReturnTypeOnItsOwnLine: 60
  120. PointerAlignment: Right
  121. ReflowComments: false
  122. SortIncludes: false
  123. #SortUsingDeclarations: false # Unknown to clang-format-4.0
  124. SpaceAfterCStyleCast: false
  125. SpaceAfterTemplateKeyword: true
  126. SpaceBeforeAssignmentOperators: true
  127. #SpaceBeforeCtorInitializerColon: true # Unknown to clang-format-5.0
  128. #SpaceBeforeInheritanceColon: true # Unknown to clang-format-5.0
  129. SpaceBeforeParens: ControlStatements
  130. #SpaceBeforeRangeBasedForLoopColon: true # Unknown to clang-format-5.0
  131. SpaceInEmptyParentheses: false
  132. SpacesBeforeTrailingComments: 1
  133. SpacesInAngles: false
  134. SpacesInContainerLiterals: false
  135. SpacesInCStyleCastParentheses: false
  136. SpacesInParentheses: false
  137. SpacesInSquareBrackets: false
  138. Standard: Cpp03
  139. TabWidth: 8
  140. UseTab: Always
  141. ...