| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "include": ["."],
- "exclude": ["tests/", "migrations/", ".venv/"],
- "typeCheckingMode": "strict",
- "pythonVersion": "3.11",
- "pythonPlatform": "All",
- "reportMissingTypeStubs": false,
- "reportOptionalMemberAccess": "none",
- "reportOptionalIterable": "none",
- "reportOptionalOperand": "none",
- "reportOptionalSubscript": "none",
- "reportTypedDictNotRequiredAccess": "none",
- "reportPrivateImportUsage": "none",
- "reportUnsupportedDunderAll": "none",
- "reportUnnecessaryTypeIgnoreComment": "none",
- "reportMatchNotExhaustive": "none",
- "reportImplicitOverride": "none",
- "reportCallInDefaultInitializer": "none",
- "reportUnnecessaryIsInstance": "none",
- "reportUnnecessaryComparison": "none",
- "reportUnknownParameterType": "none",
- "reportMissingParameterType": "none",
- "reportUnknownArgumentType": "none",
- "reportUnknownVariableType": "none",
- "reportUnknownMemberType": "none",
- "reportMissingTypeArgument": "none",
- "reportUntypedFunctionDecorator": "none",
- "reportUnknownLambdaType": "none",
- "reportPrivateUsage": "none",
- "reportConstantRedefinition": "none",
- "reportIncompatibleMethodOverride": "none",
- "reportIncompatibleVariableOverride": "none",
- "reportOverlappingOverload": "none",
- "reportPossiblyUnboundVariable": "none",
- "reportUnusedImport": "none",
- "reportUnusedFunction": "none",
- "reportArgumentType": "none",
- "reportAssignmentType": "none",
- "reportAttributeAccessIssue": "none",
- "reportCallIssue": "none",
- "reportIndexIssue": "none",
- "reportRedeclaration": "none",
- "reportReturnType": "none",
- "reportOperatorIssue": "none",
- "reportTypeCommentUsage": "none",
- "reportDeprecated": "none"
- }
|