1
0

pyrightconfig.json 528 B

123456789101112131415161718192021
  1. {
  2. "extraPaths": ["gguf-py"],
  3. "pythonVersion": "3.9",
  4. "pythonPlatform": "All",
  5. "reportUnusedImport": "warning",
  6. "reportDuplicateImport": "error",
  7. "reportDeprecated": "warning",
  8. "reportUnnecessaryTypeIgnoreComment": "warning",
  9. "executionEnvironments": [
  10. {
  11. // TODO: make this version override work correctly
  12. "root": "gguf-py",
  13. "pythonVersion": "3.8",
  14. },
  15. {
  16. // uses match expressions in steps.py
  17. "root": "examples/server/tests",
  18. "pythonVersion": "3.10",
  19. },
  20. ],
  21. }