mirror of https://github.com/yandex/gixy
Show file paths in console/text templates only if we analyzed more then 1 config
parent
ca0dca94cf
commit
ea1fb2e658
|
@ -2,7 +2,9 @@
|
||||||
|
|
||||||
{{ colors.TITLE }}==================== Results ==================={{ colors.DEF }}
|
{{ colors.TITLE }}==================== Results ==================={{ colors.DEF }}
|
||||||
{% for path, issues in reports.items() %}
|
{% for path, issues in reports.items() %}
|
||||||
|
{% if reports|length > 1 %}
|
||||||
File path: {{ path }}
|
File path: {{ path }}
|
||||||
|
{% endif %}
|
||||||
{% if not issues %}
|
{% if not issues %}
|
||||||
No issues found.
|
No issues found.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
|
|
||||||
==================== Results ===================
|
==================== Results ===================
|
||||||
{% for path, issues in reports.items() %}
|
{% for path, issues in reports.items() %}
|
||||||
|
{% if reports|length > 1 %}
|
||||||
File path: {{ path }}
|
File path: {{ path }}
|
||||||
|
{% endif %}
|
||||||
{% if not issues %}
|
{% if not issues %}
|
||||||
No issues found.
|
No issues found.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue