15 lines
469 B
JSON
15 lines
469 B
JSON
|
{
|
||
|
"editor.formatOnSave": true,
|
||
|
"autopep8.args": ["--max-line-length=150"],
|
||
|
"python.formatting.provider": "none",
|
||
|
"[python]": {
|
||
|
"editor.defaultFormatter": "ms-python.autopep8",
|
||
|
"editor.formatOnSave": true
|
||
|
},
|
||
|
"editor.fontSize": 16,
|
||
|
"emmet.includeLanguages": { "django-html": "html" },
|
||
|
"python.testing.pytestArgs": ["-v", "--cov", "--cov-report=xml", "__test__"],
|
||
|
"python.testing.unittestEnabled": false,
|
||
|
"python.testing.pytestEnabled": true
|
||
|
}
|