[Chore/Refactor] Improve type checking configuration (#25185)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
@@ -1,47 +1,28 @@
|
||||
{
|
||||
"include": ["."],
|
||||
"exclude": ["tests/", "migrations/", ".venv/"],
|
||||
"exclude": [
|
||||
"tests/",
|
||||
"migrations/",
|
||||
".venv/",
|
||||
"models/",
|
||||
"core/",
|
||||
"controllers/",
|
||||
"tasks/",
|
||||
"services/",
|
||||
"schedule/",
|
||||
"extensions/",
|
||||
"utils/",
|
||||
"repositories/",
|
||||
"libs/",
|
||||
"fields/",
|
||||
"factories/",
|
||||
"events/",
|
||||
"contexts/",
|
||||
"constants/",
|
||||
"configs/",
|
||||
"commands.py"
|
||||
],
|
||||
"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"
|
||||
"pythonPlatform": "All"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user