I like to customize JS-Beautify in Atom to better format my blade files.
Our manual style looks like this:
{{--
Template Name: Full Width Template
--}}
<!-- template-fullwidth -->
@extends('layouts.app')
@section('content')
@while(have_posts())
@php the_post() @endphp
@include('sections.content-page')
@endwhile
@endsection
JS-Beautify gives us this:
{{-- Template Name: Full Width Template
--}}
<!-- template-fullwidth -->
@extends('layouts.app')
@section('content')
@while(have_posts())
@php the_post()
@endphp
@include('sections.content-page')
@endwhile
@endsection
I've tried configuring the .jsbeautifyrc file but with no luck.
I'd like to:
- Preserve comment lines
- Add an empty line before select directives [@extends, @section]
- Indent lines inside a @section directives
- Indent items inside @while and @if
- Keep @php code and @endphp on one line
Or failing all of that have some sort of readable, well-formated code and not just a long list of directives.
Can this be done?