0 votes
in Gradle by
Which Gradle task is used to generate a code quality report using Checkstyle?

a) checkstyleMain

b) check

c) quality

d) codeReport

1 Answer

0 votes
by

Answer: a) checkstyleMain

Explanation: The checkstyleMain task is used to generate a code quality report using Checkstyle. It checks the source code against a set of rules and generates a report.

...