DataOps-platform.code-workspace 887 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "folders": [
  3. {
  4. "name": "DataOps Platform",
  5. "path": "."
  6. }
  7. ],
  8. "settings": {
  9. "python.defaultInterpreterPath": "./venv/Scripts/python.exe",
  10. "python.terminal.activateEnvironment": true,
  11. "python.linting.enabled": true,
  12. "python.linting.flake8Enabled": true,
  13. "python.formatting.provider": "black",
  14. "python.testing.pytestEnabled": true,
  15. "python.testing.pytestArgs": [
  16. "tests"
  17. ],
  18. "files.exclude": {
  19. "**/__pycache__": true,
  20. "**/*.pyc": true,
  21. "**/venv": true,
  22. "**/.git": true
  23. },
  24. "search.exclude": {
  25. "**/venv": true,
  26. "**/__pycache__": true,
  27. "**/*.pyc": true
  28. }
  29. },
  30. "extensions": {
  31. "recommendations": [
  32. "ms-python.python",
  33. "ms-python.flake8",
  34. "ms-python.black-formatter",
  35. "ms-python.mypy-type-checker",
  36. "ms-python.pytest-adapter"
  37. ]
  38. }
  39. }