sezze / prettier-plugin-django-alpine

Format Django tags and Alpine.js in HTML files
15 stars 2 forks source link

Django + Alpine.js formatting support in HTML

This Prettier plugin adds support for formatting Django and Alpine.js code in HTML files. Intended for use with Django templates using Alpine.js.

Django tags are mostly unmodified, only whitespace changes.

Alpine.js directives use modified JavaScript formatting.

If you want to format Alpine.js but you don't use Django, then this should still work just fine.

Installation

Install prettier and this plugin:

npm i -D prettier-plugin-django-alpine

Usage

Add the plugin to your .prettierrc file:

{
  "plugins": ["prettier-plugin-django-alpine"]
}

Or use it directly:

prettier --write --plugin=prettier-plugin-django-alpine "**/*.html"