You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyrightconfig.json 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "include": ["."],
  3. "exclude": ["tests/", "migrations/", ".venv/"],
  4. "typeCheckingMode": "strict",
  5. "pythonVersion": "3.11",
  6. "pythonPlatform": "All",
  7. "reportMissingTypeStubs": false,
  8. "reportGeneralTypeIssues": "none",
  9. "reportOptionalMemberAccess": "none",
  10. "reportOptionalIterable": "none",
  11. "reportOptionalOperand": "none",
  12. "reportOptionalSubscript": "none",
  13. "reportTypedDictNotRequiredAccess": "none",
  14. "reportPrivateImportUsage": "none",
  15. "reportUnsupportedDunderAll": "none",
  16. "reportUnnecessaryTypeIgnoreComment": "none",
  17. "reportMatchNotExhaustive": "none",
  18. "reportImplicitOverride": "none",
  19. "reportCallInDefaultInitializer": "none",
  20. "reportUnnecessaryIsInstance": "none",
  21. "reportUnnecessaryComparison": "none",
  22. "reportUnknownParameterType": "none",
  23. "reportMissingParameterType": "none",
  24. "reportUnknownArgumentType": "none",
  25. "reportUnknownVariableType": "none",
  26. "reportUnknownMemberType": "none",
  27. "reportMissingTypeArgument": "none",
  28. "reportUntypedFunctionDecorator": "none",
  29. "reportUnknownLambdaType": "none",
  30. "reportPrivateUsage": "none",
  31. "reportConstantRedefinition": "none",
  32. "reportIncompatibleMethodOverride": "none",
  33. "reportIncompatibleVariableOverride": "none",
  34. "reportOverlappingOverload": "none",
  35. "reportPossiblyUnboundVariable": "none",
  36. "reportUnusedImport": "none",
  37. "reportUnusedFunction": "none",
  38. "reportArgumentType": "none",
  39. "reportAssignmentType": "none",
  40. "reportAttributeAccessIssue": "none",
  41. "reportCallIssue": "none",
  42. "reportIndexIssue": "none",
  43. "reportRedeclaration": "none",
  44. "reportReturnType": "none",
  45. "reportOperatorIssue": "none",
  46. "reportTypeCommentUsage": "none",
  47. "reportDeprecated": "none"
  48. }