ty ecosystem report

{% if ty_commit and ty_commit != "unknown" %}
ty @ {{ ty_commit[0:7] }} {% if flaky_project_names|length > 0 %} ยท {{ flaky_project_names|length }} flaky project{{ 's' if flaky_project_names|length != 1 }} {% endif %}
{% endif %}


{{ diagnostics | length }} of {{ diagnostics | length }} diagnostics visible
{% for diagnostic in diagnostics %} {% endfor %}
Project Lint Name File Path Message
{% 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 %}