2025-09-03 11:52:26 +08:00
|
|
|
{
|
2025-09-09 17:12:45 +08:00
|
|
|
"include": ["."],
|
2025-09-10 01:54:26 +08:00
|
|
|
"exclude": [
|
|
|
|
|
"tests/",
|
2025-10-02 19:51:36 +09:00
|
|
|
".venv",
|
2025-09-10 01:54:26 +08:00
|
|
|
"migrations/",
|
2025-10-07 15:50:44 +09:00
|
|
|
"core/rag"
|
2025-09-05 08:34:18 +08:00
|
|
|
],
|
2025-09-03 11:52:26 +08:00
|
|
|
"typeCheckingMode": "strict",
|
2025-09-10 01:54:26 +08:00
|
|
|
"allowedUntypedLibraries": [
|
|
|
|
|
"flask_restx",
|
|
|
|
|
"flask_login",
|
|
|
|
|
"opentelemetry.instrumentation.celery",
|
|
|
|
|
"opentelemetry.instrumentation.flask",
|
2025-10-09 09:24:47 +08:00
|
|
|
"opentelemetry.instrumentation.httpx",
|
2025-09-10 01:54:26 +08:00
|
|
|
"opentelemetry.instrumentation.requests",
|
|
|
|
|
"opentelemetry.instrumentation.sqlalchemy",
|
2025-10-11 00:41:16 +09:00
|
|
|
"opentelemetry.instrumentation.redis",
|
|
|
|
|
"opentelemetry.instrumentation.httpx"
|
2025-09-10 01:54:26 +08:00
|
|
|
],
|
|
|
|
|
"reportUnknownMemberType": "hint",
|
|
|
|
|
"reportUnknownParameterType": "hint",
|
|
|
|
|
"reportUnknownArgumentType": "hint",
|
|
|
|
|
"reportUnknownVariableType": "hint",
|
|
|
|
|
"reportUnknownLambdaType": "hint",
|
|
|
|
|
"reportMissingParameterType": "hint",
|
|
|
|
|
"reportMissingTypeArgument": "hint",
|
|
|
|
|
"reportUnnecessaryComparison": "hint",
|
|
|
|
|
"reportUnnecessaryIsInstance": "hint",
|
|
|
|
|
"reportUntypedFunctionDecorator": "hint",
|
|
|
|
|
|
|
|
|
|
"reportAttributeAccessIssue": "hint",
|
2025-09-03 11:52:26 +08:00
|
|
|
"pythonVersion": "3.11",
|
2025-09-05 08:34:18 +08:00
|
|
|
"pythonPlatform": "All"
|
2025-09-30 11:24:05 +09:00
|
|
|
}
|