Markus Pesch
2b7dd6b706
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
234 B
Django/Jinja
11 lines
234 B
Django/Jinja
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
|
|
{
|
|
{% for key, value in renovate_config.items() %}
|
|
{% if value | bool %}
|
|
"{{ key }}": {{ value | lower }},
|
|
{% else %}
|
|
"{{ key }}": "{{ value }}",
|
|
{% endif %}
|
|
{% endfor %}
|
|
}
|