1.5.0 • Published 1 year ago

@destination/prettier-plugin-twig v1.5.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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.

Installation

# with npm
npm install --save-dev prettier @destination/prettier-plugin-twig

# with yarn
yarn add --dev prettier @destination/prettier-plugin-twig

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

{
  "plugins": ["@destination/prettier-plugin-twig"]
}

Configuration

Prettier for Twig 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)
twigSingleQuotetrueUse single quotes instead of double quotes in Twig tag and objects (since v0.2.0).
embeddedSingleQuotetrueUse single quotes instead of double quotes in embedded languages (JavaScript, CSS, TypeScript inside <script>, <style> or Twig 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 Twig 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>

Contributing

Read our contributing guide

License

MIT.