smart_brain/.vscode/settings.json

15 lines
496 B
JSON
Raw Permalink Normal View History

{
2023-10-15 08:10:32 +02:00
"python.defaultInterpreterPath": "./venv/bin/python",
"autopep8.args": ["--max-line-length=150"],
"[python]": {
2023-10-29 15:10:06 +01:00
"python.formatting.provider": "none",
"editor.defaultFormatter": "ms-python.autopep8",
2023-10-15 08:10:32 +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
2023-01-14 13:27:36 +01:00
}