Files
rag-manager/basedpyright.json
2025-09-19 06:56:19 +00:00

48 lines
1.2 KiB
JSON

{
"include": [
"ingest_pipeline"
],
"exclude": [
"**/__pycache__",
"**/.pytest_cache",
"**/node_modules",
".venv",
"build",
"dist"
],
"pythonVersion": "3.12",
"venvPath": ".",
"venv": ".venv",
"typeCheckingMode": "standard",
"useLibraryCodeForTypes": true,
"stubPath": "./.venv/lib/python3.12/site-packages",
"executionEnvironments": [
{
"root": ".",
"pythonVersion": "3.12",
"extraPaths": [
"./ingest_pipeline",
"./.venv/lib/python3.12/site-packages"
]
}
],
"reportCallInDefaultInitializer": "none",
"reportUnknownVariableType": "warning",
"reportUnknownMemberType": "warning",
"reportUnknownArgumentType": "warning",
"reportUnknownLambdaType": "warning",
"reportUnknownParameterType": "warning",
"reportMissingParameterType": "warning",
"reportUnannotatedClassAttribute": "warning",
"reportMissingTypeStubs": "none",
"reportMissingModuleSource": "none",
"reportImportCycles": "none",
"reportAttributeAccessIssue": "warning",
"reportAny": "warning",
"reportUnusedCallResult": "none",
"reportUnnecessaryIsInstance": "none",
"reportImplicitOverride": "none",
"reportDeprecated": "warning",
"analyzeUnannotatedFunctions": true
}