Is detekt able to run in parallel and using all co...
# detekt
j
Is detekt able to run in parallel and using all cores if there is only one module?
b
It is, on the Detekt extension
detekt{}
there is a parallel property that will enable that it is off by default.
It will not use any gradle api, I mean, you will see the gradle workers idle but detekt will create threads behind the scene to run the checks in parallel.
👍 1
thank you color 1