erenon / bazel_clang_tidy

Run clang-tidy on Bazel C++ targets directly, efficiently, with caching enabled
MIT License
109 stars 58 forks source link

Stops after first file errors #28

Closed aaron-michaux closed 2 years ago

aaron-michaux commented 2 years ago

Hi, if I have 100 files, and switch on a new check, I cannot easily see all the problems across all the files, because this bazel plugin stops after the first file errors.

erenon commented 2 years ago

Have you tried bazel -k (or whatever stands for keep going)

aaron-michaux commented 2 years ago

Thank you!