Skip to content

Commit

Permalink
Associate .html with django-html extension
Browse files Browse the repository at this point in the history
Also recommend the extension
  • Loading branch information
rik authored and nanorepublica committed May 30, 2024
1 parent d127b3b commit 9f9f732
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ docker-compose.override.yml
.vscode/**/*
# Allow these files
!.vscode/settings.json
!.vscode/extensions.json

# Node.js
node_modules
Expand Down
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["batisteo.vscode-django"]
}
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
},
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnSave": true,
"editor.formatOnSave": true
},
"files.associations": {
"*.html": "django-html"
}
}

0 comments on commit 9f9f732

Please sign in to comment.