trivago / prettier-plugin-twig-melody

Code formatting plugin for Prettier which can handle Twig/Melody templates
Apache License 2.0
157 stars 35 forks source link

No line break before %} for set, if, for #26

Closed twbartel closed 4 years ago

twbartel commented 4 years ago

By adding a potential breaking point before the closing %}, there were some strange effects sometimes. For example:

{% set replacement = {
    '$address': '<span itemprop="streetAddress">' ~ address_attributes.address
        ~ '</span>'
}
%}

The %} in its own line here does not look right. Therefore, in this PR, the breaking point was removed for the set, for, and if tags.