documentation home

Hide Issues Tab

If Miredot detects issues with your source code, it visualizes them in the generated site. Of course, you don't want your customers to see these. hideIssuesTab is an optional parameter that allows you to hide the Issues tab in the generated output. If specified and set to true, no API issues are shown, regardless of the configuration under the code analysis section. Please be advised that this setting will also hide any error Miredot encounters while processing your code, even those for which it was configured to fail your build. If this situation occurs, please change the value of this setting to false temporarily to see the problem in your output.

Maven
<configuration>
    <output>
        <html>
            <hideIssuesTab>false</hideIssuesTab>
        </html>
    </output>
</configuration>
Gradle
miredot {
    output {
        formats {
            'html' {
                hideIssuesTab = true
            }
        }
    }
}