Skip to content

Rules by severity

Report name: rules_by_error_type

Available in all: Yes

Comparable report: Yes (Comparing results)

Report that groups linter rules messages by severity and prints a total number of issues per every severity level.

Example:

Found 15 issues: 4 ERRORs, 11 WARNINGs.

Enable with:

robocop check --reports rules_by_error_type
[tool.robocop.lint]
reports = [
    "rules_by_error_type"
]

You can also enable it by using all which enables all reports that supports all option:

robocop check --reports all
[tool.robocop.lint]
reports = [
    "all"
]