1.2.7 • Published 5 months ago

@destination/prettier-plugin-twig v1.2.7

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Twig Prettier Plugin

This is a fork of the excellent Shopify Liquid Prettier Plugin.

As Liquid and Twig are quite similar, we were able to make minimal changes to the original plugin to support Twig.

Prettier is an opinionated code formatter. It enforces a consistent style by parsing your code and re-printing it with its own rules that take the maximum line length into account, wrapping code when necessary.

demo

Can this be used in production?

Yes! It's also available in the Online Store Code Editor.

Installation

# with npm
npm install --save-dev prettier @shopify/prettier-plugin-liquid

# with yarn
yarn add --dev prettier @shopify/prettier-plugin-liquid

For Prettier version 3 and above, the plugin must also be declared in the configuration.

{
  "plugins": ["@shopify/prettier-plugin-liquid"]
}

Usage

See our Wiki pages on the subject:

Playground

You can try it out in your browser in the playground.

Configuration

Prettier for Liquid supports the following options.

NameDefaultDescription
printWidth120Changed from Prettier's default (80) (see prettier docs)
tabWidth2Same as in Prettier (see prettier docs)
useTabsfalseSame as in Prettier (see prettier docs)
singleQuotefalseSame as in Prettier (see prettier docs)
bracketSameLinefalseSame as in Prettier (see prettier docs)
liquidSingleQuotetrueUse single quotes instead of double quotes in Liquid tag and objects (since v0.2.0).
embeddedSingleQuotetrueUse single quotes instead of double quotes in embedded languages (JavaScript, CSS, TypeScript inside <script>, <style> or Liquid equivalent) (since v0.4.0).
htmlWhitespaceSensitivitycssSame as in Prettier (see prettier docs)
singleLineLinkTagsfalseIf set to true, will print <link> tags on a single line to remove clutter
indentSchemafalseIf set to true, will indent the contents of the {% schema %} tag

Ignoring code

We support the following comments (either via HTML or Liquid comments):

  • prettier-ignore
  • prettier-ignore-attribute
  • prettier-ignore-attributes (alias)

They target the next node in the tree. Unparseable code can't be ignored and will throw an error.

{% # prettier-ignore %}
<div         class="x"       >hello world</div            >

{% # prettier-ignore-attributes %}
<div
  [[#if Condition]]
    class="a b c"
  [[/if ]]
></div>

Known issues

Take a look at our known issues and open issues.

Contributing

Read our contributing guide

License

MIT.