vscode-blade-formatter
vscode-blade-formatter copied to clipboard
An opinionated Blade file formatter for VSCode
Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 3.3.3 to 3.4.1. Release notes Sourced from tailwindcss's releases. v3.4.1 Fixed Don't remove keyframe stops when using important utilities (#12639) Don't add spaces to gradients and grid...
### Description The formatting is working. But some conflict made blade files lose syntax highlight!  ### Expected Behavior Not lose syntax highlight! ### Actual Behavior Lose syntax highlight! ###...
### Platform Windows ### Template before formatting ```blade Number Nom prenom Company Ville Salaire Action @foreach($data as $d) {{$d->id}} {{$d->Name}} {{$d->Lastname}} {{$d->Company}} {{$d->Ville}} {{$d->Salaire}} @endforeach ``` ### Template after formatting...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [glob](https://togithub.com/isaacs/node-glob) | [`8.1.0` -> `10.4.2`](https://renovatebot.com/diffs/npm/glob/8.1.0/10.4.2) | [](https://docs.renovatebot.com/merge-confidence/)...
[](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`^18.0.0` -> `^20.0.0`](https://renovatebot.com/diffs/npm/@types%2fnode/18.19.4/20.11.5) |...
### Platform Windows ### Template before formatting ```blade Define project scale Small Medium Large @error('scope') {{ $message }} @enderror ``` ### Template after formatting ```blade Define project scale Small Medium...
### Description Add the formatter ability to remove extra whitespace at the end of lines within a multiline Blade comment. ### Suggested Solution Example source (line 2 has extra whitespace...
### Platform MacOS ### Template before formatting ```blade {{ ($value ?: null)?->someProperty }} ``` ### Template after formatting ```blade {{ ($value ?: null)?->someProperty }} ``` ### Expected Behaviour Formatting does...
### Platform Linux ### Template before formatting ```blade Title\ @if (isset($editpost)) @endif does not read the if? // Edit ``` ### Template after formatting ```blade Title\ @if (isset($editpost)) @endif Same...
### Description Right now if I have the setting "FormatOnSave" set to "modifications" the blade formatter doesn't run. If I change that to "file", then it runs fine. According to...