We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We decided to order includes in the following format:
<main file header> <lo2s group> <cpp dependencies group> <std lib group> <cstr lib group> extern "C" { <c dependencies> }
It's possible to explain that to clang-format:
The text was updated successfully, but these errors were encountered:
We need https://clang.llvm.org/docs/ClangFormatStyleOptions.html#mainincludechar
Which is Part of clang format 19 ...
Sorry, something went wrong.
With clang-format-19 this works. With older versions it doesn't.
MainIncludeChar: Any IncludeBlocks: Regroup IncludeCategories: - Regex: '^<lo2s/' Priority: 2 - Regex: '(hpp|hxx)>$' Priority: 3 - Regex: '^<([^c][[:alnum:]|_]+|chrono|compare|charconv|complex|condition_variable|codecvt|coroutine|concepts)>$' Priority: 4 - Regex: '^<c[[:alnum:]|_]+>' Priority: 5 - Regex: '\.h>' Priority: 6
clang-format 19 is not yet released. So we do have to wait a bit.
No branches or pull requests
We decided to order includes in the following format:
It's possible to explain that to clang-format:
The text was updated successfully, but these errors were encountered: