CLion has a nice integration of Clang-Tidy, but the default configuration is targeted to modern C++. The compiler I'm stuck with however is C++03 only and all the advices of Clang-Tidy on modernizing my code just continue to rub in the fact that my compiler is very old.
I have identified already a couple of checks that must be deactivated for C++03, but this list is surely far from complete:
boost-use-to-string- all
modernize-use-*checks
Does anybody have compiled a list of checks to deactivate for C++03?