melody
melody copied to clipboard
Possible missing Operator "=>" in the filter filter
Explain the problem
I started to use prettier-plugin-twig-melody to check my twig templates
and found that melody do not recognize the =>
Operator like it's used in the filter filter.
Expected Behaviour
Usage of the => operator like described in the filter filter.
Actual Behaviour
Throws Error:
ERROR in ./src/home/index.twig
ERROR: Unexpected token "operator" of value ">"
16 | {% mount '../counter' with { count: 5 } %}
17 | {% set sizes = [34, 36, 38, 40, 42] %}
> 18 | {{ sizes|filter(v => v > 38)|join(', ') }}
| ^
19 | </div>
Having the same problem, any chance this can be added as a token?
Has anyone found a way to solve this? i'm experiencing the same issue.