prettier-plugin-liquid icon indicating copy to clipboard operation
prettier-plugin-liquid copied to clipboard

Avoid line break between consequent variables

Open gavar opened this issue 1 year ago • 0 comments

Describe the bug The plugin breaks the line between consequent variables if there is nothing in between.

Unformatted source

Hello {{ FirstName }} and {{ LastName }}

Hello {{ FirstName }} {{ LastName }}

Expected output

Hello {{ FirstName }} and {{ LastName }}

Hello {{ FirstName }} {{ LastName }}

Actual output

Hello {{ FirstName }} and {{ LastName }}

Hello {{ FirstName }}
{{ LastName }}

Debugging information

  • https://shopify.github.io/prettier-plugin-liquid
  • Version 1.0.2

gavar avatar Jan 04 '23 02:01 gavar