shufo / vscode-blade-formatter

An opinionated Blade file formatter for VSCode
https://marketplace.visualstudio.com/items?itemName=shufo.vscode-blade-formatter
MIT License
4.28k stars 31 forks source link

[Formatting Bug]: Chaining method issue #877

Open dicktornfeldt opened 1 month ago

dicktornfeldt commented 1 month ago

Platform

MacOS

Template before formatting

<flux:tab :data-selected="request()->routeIs('meals*')" href="{{ route('meals.index') }}">

Template after formatting

<flux:tab :data-selected="request() - > routeIs('meals*')" href="{{ route('meals.index') }}">

Expected Behaviour

The arrow between request() and routeIs() should not get expanded

Relevant log output

No response

dicktornfeldt commented 1 month ago

I understand that it's because im using Flux components instead of basic Laravel components after reading: #506