settings.json 391 B

1234567891011121314
  1. {
  2. "editor.defaultFormatter": "esbenp.prettier-vscode",
  3. "editor.formatOnSave": true,
  4. "prettier.printWidth": 120,
  5. "python.testing.pytestArgs": ["."],
  6. "python.testing.pytestEnabled": true,
  7. "python.testing.unittestEnabled": false,
  8. "[python]": {
  9. "editor.defaultFormatter": "ms-python.autopep8",
  10. "editor.codeActionsOnSave": {
  11. "source.fixAll.ruff": "always"
  12. }
  13. }
  14. }