We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In
blade-formatter/src/formatter.ts
Line 1106 in 299b664
It checks prefix (x-|livewire:). However, when I use a new library flux the component name is <flux:xxx>.
(x-|livewire:)
<flux:xxx>
The issue:
Currently it formats
:key="$foo->bar"
to
:key="$foo - > bar"
Can we support this or even future to apply user pass in the prefix.
can be default as ['x-', 'livewire:'] so in the future in another lib defines it own component name, this formatter still supports it.
['x-', 'livewire:']
No response
The text was updated successfully, but these errors were encountered:
shufo
RayGuo-ergou
Successfully merging a pull request may close this issue.
Description
In
blade-formatter/src/formatter.ts
Line 1106 in 299b664
It checks prefix
(x-|livewire:)
. However, when I use a new library flux the component name is<flux:xxx>
.The issue:
Currently it formats
to
:key="$foo - > bar"
Suggested Solution
Can we support this or even future to apply user pass in the prefix.
can be default as
['x-', 'livewire:']
so in the future in another lib defines it own component name, this formatter still supports it.Alternatives
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: