settings.json 528 B

123456789101112131415161718
  1. {
  2. "[python]": {
  3. "editor.defaultFormatter": "ms-python.black-formatter",
  4. "editor.formatOnSave": true,
  5. "editor.codeActionsOnSave": {
  6. "source.organizeImports": "explicit",
  7. },
  8. },
  9. "python.testing.pytestEnabled": false,
  10. "python.testing.unittestEnabled": true,
  11. "isort.args":["--profile", "black"],
  12. "black-formatter.args": ["--line-length", "120"],
  13. "files.associations": {
  14. "*.mac": "vbs"
  15. },
  16. "python.testing.autoTestDiscoverOnSaveEnabled": false,
  17. }