vscode-blade-formatter icon indicating copy to clipboard operation
vscode-blade-formatter copied to clipboard

An opinionated Blade file formatter for VSCode

Results 101 vscode-blade-formatter issues
Sort by recently updated
recently updated
newest added

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...

dependencies

### Description The formatting is working. But some conflict made blade files lose syntax highlight! ![codede](https://github.com/shufo/vscode-blade-formatter/assets/441455/aa1a84df-b0c3-4ab2-8353-59bb9a9f677c) ### Expected Behavior Not lose syntax highlight! ### Actual Behavior Lose syntax highlight! ###...

bug

### 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...

bug

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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) | [![age](https://developer.mend.io/api/mc/badges/age/npm/glob/10.4.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)...

dependencies

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](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) |...

dependencies

### 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...

bug

### 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...

bug

### 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...

bug

### 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...