prettier-plugin-jinja-template but with patches to work with Askama
Find a file
davidodenwald 8e29c1dde4 Release 0.1.1
remove check for valid statement keywords
2023-03-17 20:41:31 +01:00
.github/workflows fix failing tests on node 14 2022-12-01 19:27:58 +01:00
src remove check for the statement keyword 2023-03-17 20:38:24 +01:00
test remove check for the statement keyword 2023-03-17 20:38:24 +01: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.1.1 2023-03-17 20:41:31 +01:00
package.json Release 0.1.1 2023-03-17 20:41:31 +01: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