| Project | Lint Name | File Path | |
|---|---|---|---|
| {% if diagnostic.project_location %} {{ diagnostic.project }} {% else %} {{ diagnostic.project }} {% endif %} {% set strict = diagnostic.strict_settings %} {{ 'strict' if strict else 'non-strict' }} | {{ diagnostic.lint_name }} {% if diagnostic.is_flaky %} flaky {% endif %} | {% if diagnostic.github_ref %} {{diagnostic.path}}:{{diagnostic.line}}:{{diagnostic.column}} {% else %} {{diagnostic.path}}:{{diagnostic.line}}:{{diagnostic.column}} {% endif %} |
{% if diagnostic.is_flaky %}
{% for v in diagnostic.variants %}
({{ v.count }}/{{ diagnostic.flaky_runs }})
{% if v.diagnostic.lint_name != diagnostic.lint_name %}
[{{ v.diagnostic.level }}] {{ v.diagnostic.lint_name }} -
{% endif %}
{{ v.diagnostic.message | e }}
{% endfor %}
{% else %}
{{ diagnostic.message | e }}
{% endif %}
|