Export list of Linted Files
By default Verissimo lints all the files specified for compilation. Pre-waivers allow you to limit the linting to a subset of relevant files. For example, you would typically use pre-waivers to skip third party IPs.
verissimo.sh [...] -gen_custom_report LINTED_FILES_TEXT
When linting is done, Verissimo will generate a file named linted_files_custom_report.txt, containing a list of all the files that have been linted by at least one rule. You can specify the location where you want to generate the report by adding -gen_custom_report_location on the Verissimo command line.
verissimo.sh -gen_custom_report_ftl LINTED_FILES_TEXT
<#list linter.getFiles() as file>
<#if file.isPreWaivedFor("ALL_CHECKS") != "true" && file != "none">
${file.getName()}
</#if>
</#list>
verissimo.sh [...] -gen_custom_report /path/to/linted_files_custom_report.txt.ftl