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
This plugin enforces/inserts an empty line after Blade conditionals:
{{-- Before --}}
<p>Something</p>
@if (true)
<p>True</p>
@endif
<p>Something else</p>
{{-- After --}}
<p>Something</p>
@if (true)
<p>True</p>
@endif
<p>Something else</p>
I would love the option to disable this behaviour. Call me crazy, but sometimes I just want everything bunched up together.
This spacing isn't necessary, it doesn't seem to be a universal Prettier/Blade convention, and it isn't applied to all directives or all situations (e.g. doesn't insert spacing before the conditional, as seen above).
The text was updated successfully, but these errors were encountered:
This plugin enforces/inserts an empty line after Blade conditionals:
I would love the option to disable this behaviour. Call me crazy, but sometimes I just want everything bunched up together.
This spacing isn't necessary, it doesn't seem to be a universal Prettier/Blade convention, and it isn't applied to all directives or all situations (e.g. doesn't insert spacing before the conditional, as seen above).
The text was updated successfully, but these errors were encountered: