gradle-lint-plugin icon indicating copy to clipboard operation
gradle-lint-plugin copied to clipboard

generateGradleLintReport should print path of generated report file

Open tir38 opened this issue 6 years ago • 1 comments

I would love to be able to run generateGradleLintReport and then click on a link in the terminal to open the report. Instead I have to go find it inside build/reports/gradleLint/

tir38 avatar Aug 26 '19 17:08 tir38

    generateGradleLintReport{
        doLast {
            file("build/reports/gradleLint/${project.name}.txt")
                    .readLines()
            .forEach(line -> println(line))
        }

adilev26 avatar Mar 06 '23 08:03 adilev26