I agree with the majority of the clang-tidy
checks, but some I don't see tremendous value in. Mostly these are the fuschia*
checks, such as the default argument warnings:
error: calling a function that uses a default argument is disallowed [fuchsia-default-arguments...
Therefore I would like to know how to run all of the checks except the fuschia
ones. Right now, I just check everything in Cmake:
set(CMAKE_CXX_CLANG_TIDY
clang-tidy;
-header-filter=.;
-checks=*;
-warnings-as-errors=*;)