-
Notifications
You must be signed in to change notification settings - Fork 310
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
Remove IncludeCategories
from .clang-format
#1987
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good once you fix the copyright error
rerun tests |
It was recently noticed that the `IncludeCategories`: ``` IncludeCategories: - Regex: '^<ext/.*\.h>' Priority: 2 - Regex: '^<.*\.h>' Priority: 1 - Regex: '^<.*' Priority: 2 - Regex: '.*' Priority: 3 ``` In the `.clang-format` are not really necessary as `ext` has no meaning in RAPIDS. This PR removes these. Note these changes are being made in all repos: * `cudf`: rapidsai/cudf#9876 * `rmm`: rapidsai/rmm#933 * `cuml`: rapidsai/cuml#4438 * `cugraph`: rapidsai/cugraph#1987 Authors: - Conor Hoekstra (https://github.com/codereport) Approvers: - Mark Harris (https://github.com/harrism) URL: #470
Codecov Report
@@ Coverage Diff @@
## branch-22.02 #1987 +/- ##
===============================================
Coverage ? 70.50%
===============================================
Files ? 142
Lines ? 8880
Branches ? 0
===============================================
Hits ? 6261
Misses ? 2619
Partials ? 0 Continue to review full report at Codecov.
|
It was recently noticed that the `IncludeCategories`: ``` IncludeCategories: - Regex: '^<ext/.*\.h>' Priority: 2 - Regex: '^<.*\.h>' Priority: 1 - Regex: '^<.*' Priority: 2 - Regex: '.*' Priority: 3 ``` In the `.clang-format` are not really necessary as `ext` has no meaning in RAPIDS. This PR removes these. Note these changes are being made in all repos: * `cudf`: rapidsai/cudf#9876 * `rmm`: rapidsai/rmm#933 * `cuml`: rapidsai/cuml#4438 * `cugraph`: rapidsai/cugraph#1987 * `cuspatial`: rapidsai/cuspatial#470 Authors: - Conor Hoekstra (https://github.com/codereport) Approvers: - Brad Rees (https://github.com/BradReesWork) - Corey J. Nolet (https://github.com/cjnolet) URL: #412
@BradReesWork @ChuckHastings can one of you merge? I don't have commit access. 🙏 |
@gpucibot merge |
It was recently noticed that the
IncludeCategories
:In the
.clang-format
are not really necessary asext
has no meaning in RAPIDS. This PR removes these.Note these changes are being made in all repos:
cudf
: RemoveIncludeCategories
from.clang-format
cudf#9876rmm
: RemoveIncludeCategories
from.clang-format
rmm#933cuml
: RemoveIncludeCategories
from.clang-format
cuml#4438