-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the clang-format config for clang-format version 19. #11
base: main
Are you sure you want to change the base?
Conversation
WalkthroughThe changes involve updates to the Changes
Recent review detailsConfiguration used: CodeRabbit UI Files selected for processing (1)
Additional comments not posted (6)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Description
clang-format just released version 19.1 in PyPI which affects some of our linting workflows (as mentioned in y-scope/clp#545)
This PR updates the clang-format configuration to adapt the latest configuration changes:
AlwaysBreakTemplateDeclarations
with the equivalentBreakTemplateDeclarations
AlwaysBreakAfterReturnType
with the equivalentBreakAfterReturnType
KeepEmptyLines
to replace deprecated optionKeepEmptyLinesAtTheStartOfBlocks
, and also add a new line to the end of file (which is not set in the old config)AllowShortCaseExpressionOnASingleLine
ExceptDoubleParentheses
underSpacesInParensOptions
References:
clang 19 release notes: https://releases.llvm.org/19.1.0/tools/clang/docs/ReleaseNotes.html#clang-format
clang-format 19 doc: https://releases.llvm.org/19.1.0/tools/clang/docs/
Validation performed
Use the updated config to format clp core and ensure the lint task can be successfully executed. Manually verified the refactored code pieces didn't introduce any unexpected behaviour.
Summary by CodeRabbit