Merge pull request #13518 from mjstapp/clang_align_macros

tools: config clang-format to allow aligned macros
This commit is contained in:
Donald Sharp 2023-05-12 12:34:59 -04:00 committed by GitHub
commit f683852ba1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@ AllowShortFunctionsOnASingleLine: false
IndentCaseLabels: false IndentCaseLabels: false
AlignEscapedNewlinesLeft: false AlignEscapedNewlinesLeft: false
AlignTrailingComments: true AlignTrailingComments: true
AlignConsecutiveMacros: AcrossComments
AllowAllParametersOfDeclarationOnNextLine: false AllowAllParametersOfDeclarationOnNextLine: false
AlignAfterOpenBracket: true AlignAfterOpenBracket: true
SpaceAfterCStyleCast: false SpaceAfterCStyleCast: false