guide
guide copied to clipboard
Add some info on automated C/C++ code review/analysis
for example, using Codacy (with cppcheck) or SonarQube (with C++ plugin). Anyone using these in the projects?
My current C++ projects are not in public repos, so I'm not using them, but I've used cppcheck on my code locally before. It mainly checks for the kinds of errors you get in C, if you write nice modern C++, then it doesn't help all that much. Then again, most C++ code in the world is not nice modern C++, so I think it would be quite useful in most cases.
So yes, that would be good to have!
Related #30