-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add clang-tidy to buildsystem checks #1060
Comments
I would be interested in picking up this issue |
@mcdermott111 You are very welcome to do that :) |
What is the best way to decide which clang-tidy errors to be checking for. I think it would be unnecessary to have every single error turned on. The following are the set of errors I was thinking of including so far: clang-analyzer, bugprone, concurrency, performance and their respective sub-errors. |
@mcdermott111 I think these are good choices. We can always be more thorough later if we want. |
I can do this |
clang-tidy
can detect lots of C++ programming and style errors, so it would be worthwile to have it included inmake check
. To do so, a Python module invoking it should be added tobuildsystem.codecompliance
.The text was updated successfully, but these errors were encountered: