home_emulation/.vscode/settings.json

15 lines
496 B
JSON
Raw Normal View History

2023-08-03 20:43:41 +02:00
{
"python.defaultInterpreterPath": "./venv/bin/python",
"autopep8.args": ["--max-line-length=150"],
"[python]": {
2023-10-29 15:10:52 +01:00
"python.formatting.provider": "none",
"editor.defaultFormatter": "ms-python.autopep8",
2023-08-03 20:43:41 +02:00
"editor.formatOnSave": true
},
"editor.fontSize": 14,
"emmet.includeLanguages": { "django-html": "html" },
"python.testing.pytestArgs": ["-v", "--cov", "--cov-report=xml", "__test__"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}