Saas-Base / SAAS.code-workspace
rsnarsna
Implement subscription management features including billing history, plan changes, and usage metrics
ecf81ae
Raw
History Blame Contribute Delete
1.14 kB
{
"folders": [
{
"path": "."
}
],
"settings": {
// Automatically targets your virtual environment (adjust path if needed)
"python.defaultInterpreterPath": "${workspaceFolder}/venv/bin/python",
// Tells the linter where your Django root is to prevent import errors
"python.analysis.extraPaths": [
"${workspaceFolder}"
],
// Forces HTML files in template folders to use Django HTML syntax highlighting
"files.associations": {
"**/templates/**/*.html": "django-html",
"*.html": "django-html"
},
// Tailors editor settings specifically for Django template files
"[django-html]": {
"editor.tabSize": 4,
"editor.formatOnSave": true,
"editor.defaultFormatter": "batisteo.vscode-django"
},
// Excludes messy compiled files from your VS Code file explorer search
"files.exclude": {
"**/__pycache__": true,
"**/*.pyc": true,
"**/.*": true
}
}
}