Disable clang-tidy checks as discussed in D114915
Details
Details
- Reviewers
ldionne • Quuxplusone - Group Reviewers
Restricted Project - Commits
- rGf50be8eb0a12: [libc++][NFC] Disable clang-tidy checks
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Why is llvm-else-after-return disabled? That's a pretty important readability improvement. What about llvm-header-guard?
Comment Actions
IIUC llvm-else-after-return is the thing that tries to remove any else after an if that contains a return? IMO that's not a readability improvement at all, at least not in the places where it modified the code in D114915.
Comment Actions
I found a lot of the changes to improve readability, but the __libcpp_is_constant_evaluated ones were dubious and I can see why we should disable it for the time being.