Project And Teamorganisation Tool
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.json 523B

123456789101112131415
  1. {
  2. "python.defaultInterpreterPath": "./venv/bin/python",
  3. "autopep8.args": ["--max-line-length=150"],
  4. "python.formatting.provider": "none",
  5. "[python]": {
  6. "editor.defaultFormatter": "ms-python.python",
  7. "editor.formatOnSave": true
  8. },
  9. "editor.formatOnSave": true,
  10. "editor.fontSize": 14,
  11. "emmet.includeLanguages": { "django-html": "html" },
  12. "python.testing.pytestArgs": ["-v", "--cov", "--cov-report=xml", "__test__"],
  13. "python.testing.unittestEnabled": false,
  14. "python.testing.pytestEnabled": true
  15. }