prettier-plugin-jinja-template but with patches to work with Askama
Find a file
2023-08-12 21:13:40 +02:00
.github/workflows fix failing tests on node 14 2022-12-01 19:27:58 +01:00
src update plugin to support prettier v3 2023-08-12 20:32:28 +02:00
test update plugin to support prettier v3 2023-08-12 20:32:28 +02:00
.gitignore initial commit 2022-11-18 20:05:06 +01:00
.prettierignore fix indentation on readme example 2022-11-18 21:22:28 +01:00
.prettierrc initial commit 2022-11-18 20:05:06 +01:00
babel.config.js initial commit 2022-11-18 20:05:06 +01:00
jest.config.js initial commit 2022-11-18 20:05:06 +01:00
package-lock.json Release 1.0.0 2023-08-12 20:34:06 +02:00
package.json Release 1.0.0 2023-08-12 20:34:06 +02:00
README.md update readme to include prettier v3 instructions 2023-08-12 21:13:40 +02:00
tsconfig.json update plugin to support prettier v3 2023-08-12 20:32:28 +02:00

prettier-plugin-jinja-template

Formatter plugin for jinja2 template files.

Install

npm install --save-dev prettier prettier-plugin-jinja-template

Add the plugin to your .prettierrc:

{
  "plugins": ["prettier-plugin-jinja-template"]
}

Use

To format basic .html files, you'll have to override the used parser inside your .prettierrc:

{
  "overrides": [
    {
      "files": ["*.html"],
      "options": {
        "parser": "jinja-template"
      }
    }
  ]
}

Run it on all html files in your project:

npx prettier --write **/*.html

If you don't have a prettier config you can run the plugin with this command:

npx prettier --write **/*.html --plugin=prettier-plugin-jinja-template