選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pyrightconfig.json 1.6KB

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