{% set errorCount = 0 %}
{% for file in project.files|filter(file => file.allErrors is not empty) %}
{% if file.allerrors.count > 0 %}
{{ file.path }} |
{{ file.allErrors.count }} |
{% endif %}
{% set errorCount = errorCount + file.allerrors.count %}
{% endfor %}
No errors have been found in this project.