file2mail/.vscode/settings.json

15 lines
496 B
JSON
Raw Normal View History

2023-06-08 19:12:50 +02:00
{
2023-11-04 13:45:15 +01:00
"python.defaultInterpreterPath": "./venv/bin/python",
2023-06-08 19:12:50 +02:00
"autopep8.args": ["--max-line-length=150"],
"[python]": {
2023-11-04 13:45:15 +01:00
"python.formatting.provider": "none",
2023-06-08 19:12:50 +02:00
"editor.defaultFormatter": "ms-python.autopep8",
"editor.formatOnSave": true
},
2023-11-04 13:45:15 +01:00
"editor.fontSize": 14,
2023-06-08 19:12:50 +02:00
"emmet.includeLanguages": { "django-html": "html" },
"python.testing.pytestArgs": ["-v", "--cov", "--cov-report=xml", "__test__"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}