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.
Install prettier and this plugin:
npm i -D prettier-plugin-django-alpine
Add the plugin to your .prettierrc
file:
{
"plugins": ["prettier-plugin-django-alpine"]
}
Or use it directly:
prettier --write --plugin=prettier-plugin-django-alpine "**/*.html"