settings.json 654 B

123456789101112131415161718192021222324
  1. {
  2. "[python]": {
  3. "editor.defaultFormatter": "ms-python.black-formatter",
  4. "editor.formatOnSave": true,
  5. "editor.codeActionsOnSave": {
  6. "source.organizeImports": "explicit",
  7. },
  8. },
  9. "isort.args":["--profile", "black"],
  10. "black-formatter.args": ["--line-length", "120"],
  11. "python.testing.pytestEnabled": false,
  12. "python.testing.unittestEnabled": true,
  13. "files.associations": {
  14. "*.mac": "vbs"
  15. },
  16. "python.testing.unittestArgs": [
  17. "-v",
  18. "-s",
  19. "./tests",
  20. "-p",
  21. "test_*.py"
  22. ],
  23. "python.testing.autoTestDiscoverOnSaveEnabled": true
  24. }