settings.json 870 B

12345678910111213141516171819202122232425262728
  1. {
  2. "python.pythonPath": ".venv/bin/python",
  3. "python.analysis.extraPaths": [
  4. "my_module",
  5. "tests",
  6. ".venv/bin/python"
  7. ],
  8. "editor.tabSize": 4,
  9. "editor.insertSpaces": true,
  10. "editor.wordWrapColumn": 80,
  11. "editor.wordWrap": "wordWrapColumn",
  12. "files.trimTrailingWhitespace": true,
  13. "files.insertFinalNewline": true,
  14. "files.trimFinalNewlines": true,
  15. "editor.formatOnSave": true,
  16. "python.linting.enabled": true,
  17. "python.linting.lintOnSave": true,
  18. "python.linting.pylintEnabled": false,
  19. "python.linting.mypyEnabled": true,
  20. "python.linting.flake8Enabled": true,
  21. "python.linting.flake8Args": [
  22. "--verbose"
  23. ],
  24. "python.testing.unittestEnabled": false,
  25. "python.testing.nosetestsEnabled": false,
  26. "python.testing.pytestEnabled": true,
  27. "python.testing.pytestArgs": []
  28. }