settings.json 469 B

12345678910111213141516
  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. }