Skip to content

Commit

Permalink
Handle Jinja templates better
Browse files Browse the repository at this point in the history
  • Loading branch information
jellybob committed Dec 17, 2023
1 parent 789a81a commit d182332
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,20 @@
"ms-python.python",
"ms-python.black-formatter",
"ms-python.flake8",
"ms-python.mypy-type-checker"
]
"ms-python.mypy-type-checker",
"samuelcolvin.jinjahtml"
],
"settings": {
"files.associations": {
"*.html": "jinja-html"
},
"emmet.includeLanguages": {
"jinja-html": "html"
},
"[jinja-html]": {
"editor.defaultFormatter": "vscode.emmet"
}
}
}
}
}

0 comments on commit d182332

Please sign in to comment.