I'm running clang-tidy
with the following command:
run-clang-tidy.py -checks="-*,cppcoreguidelines-*,hicpps-*" -header-filter=".*" -fix"
(or clang-tidy -checks="-*,cppcoreguidelines-*,hicpps-*" -header-filter=".*" -fix"
also works)
This returns a lot of errors. It also says applying fixes...
in the terminal since I added the -fix
option.
My problem is that for the cppcoreguidelines-*
and hicpps-*
fixes are not applied, only shown. Does the checks that I have choose not to support fixing my 1000 problems?