atom-beautify is pretty decent/popular. I'd suggest filling out an issue on the GH repo https://github.com/Glavin001/atom-beautify/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc
Jan 2, 2019
1
Level 7
Recommend me a beautifier for Atom (esp. for Blade)
I'm using atom-beautify right now. It's working fine for PHP and even for Blade files, but there's a problem when using Vue, it's something about the use of @ to indicate that Blade should not parse something. For example, this:
<input type='checkbox'
name='every_week'
value='1'
@if (old('every_week'))
checked
@endif
>
becomes this:
<input type='checkbox'
name='every_week'
value='1'
<blade
if /> (old('every_week'))
checked
@endif
>
Is there an alternative solution (different beautifier or maybe even a different setting)? Unibeautify might become a better solution, but there's no support for Blade yet https://unibeautify.com/
Please or to participate in this conversation.