You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge branch 'GH-90/bracket-same-line' into master
CloseGH-90
Fix missing implementation for option `bracketSameLine` for html tags.
If you don't have this option on your prettier configuration you need to
add it to retain your current code style.
Add this configuration to retain current code style.
```yaml
bracketSameLine: true
```
Otherwise closing bracket for opening tag will be printed on new line.
__Previous default__
```twig
<a
href="/some/url">
text
</a>
```
__Current default__
```twig
<a
href="/some/url"
>
text
</a>
```
- Add option to add prefix/suffix for test snapshot output. This will allow to reuse single input file to produce several snapshot output with different configuration
0 commit comments