prettier-plugin-jinja-template but with patches to work with Askama
Find a file
Matthijs van der Vleuten c854cfd82d Fix 'closung' typo
2023-05-14 10:47:53 +02:00
.github/workflows fix failing tests on node 14 2022-12-01 19:27:58 +01:00
src Fix 'closung' typo 2023-05-14 10:47:53 +02:00
test Fix 'closung' typo 2023-05-14 10:47:53 +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 0.4.0 2023-05-07 14:33:48 +02:00
package.json Release 0.4.0 2023-05-07 14:33:48 +02:00
README.md improve usage instructions in readme 2023-01-06 18:32:30 +01:00
tsconfig.json initial commit 2022-11-18 20:05:06 +01:00

prettier-plugin-jinja-template

Formatter plugin for jinja2 template files.

Install

npm install --save-dev prettier 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