prettier-plugin-jinja-template but with patches to work with Askama
3490efe0c4
add elif statement |
||
---|---|---|
.github/workflows | ||
src | ||
test | ||
.gitignore | ||
.prettierignore | ||
.prettierrc | ||
babel.config.js | ||
jest.config.js | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json |
prettier-plugin-jinja-template
Formatter plugin for jinja2 template files.
Install
npm install --save-dev prettier prettier-plugin-jinja-template
Use
To use it with basic .html files, you'll have to override the used parser inside your prettier config:
{
"overrides": [
{
"files": ["*.html"],
"options": {
"parser": "jinja-template"
}
}
]
}