erenon / bazel_clang_tidy

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

Stops after first file errors #28

Closed aaron-michaux closed 1 year ago

aaron-michaux commented 1 year 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 1 year ago

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

aaron-michaux commented 1 year ago

Thank you!