You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the user does not specify -j flag in run-clang-tidy or clang-tidy-diff it would be better to run everything in parallel by default.
From my experience, other linters try to run in parallel by default, for example cargo clippy, golangci-lint, revive.
I think we should add implicit call to multiprocessing.cpu_count() in run-clang-tidy and clang-tidy-diff and use that number if user didn't specify -j explicitly.