... but I have a monolithic app. and when I do large changes (like refactors) then sometimes it breaks in like 7 different modules and it takes forever to find out the issues when it hits CI. lmao
Colton Idle
09/27/2023, 1:24 PM
really just want a single command I can run locally so i can find all of the detekt issues first lol
j
Javier
09/27/2023, 1:26 PM
./gradlew detekt
will run all detekt tasks in all modules.
You need to call that in each build (so one for the main build and N more for each included build).
You can create a script which does that in one command.