chore: configure VS Code to recognize Jinja templates

Added a VS Code settings file to automatically associate .html files as Jinja templates. This improves syntax highlighting for users working with Jinja templating in HTML files. Helps streamline the developer experience and prevents misidentification of template files. Resolves issues with highlighting inconsistencies.
This commit is contained in:
Kumi 2024-09-18 12:17:58 +02:00
parent 01a1a3fa33
commit 19bded9875
Signed by: kumi
GPG key ID: ECBCC9082395383F

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"files.associations": {
"*.html": "jinja-html"
}
}