Files
rag-manager/basedpyright.json
2025-09-18 09:44:16 +00:00

30 lines
811 B
JSON

{
"include": [
"ingest_pipeline"
],
"exclude": [
"**/__pycache__",
"**/.pytest_cache",
"**/node_modules",
".venv"
],
"pythonPath": "./.venv/bin/python",
"venvPath": ".",
"venv": ".venv",
"reportCallInDefaultInitializer": "none",
"reportUnknownVariableType": "warning",
"reportUnknownMemberType": "warning",
"reportUnknownArgumentType": "warning",
"reportUnknownLambdaType": "warning",
"reportUnknownParameterType": "warning",
"reportMissingParameterType": "warning",
"reportUnannotatedClassAttribute": "warning",
"reportMissingTypeStubs": "none",
"reportMissingModuleSource": "none",
"reportAny": "warning",
"reportUnusedCallResult": "none",
"reportUnnecessaryIsInstance": "none",
"reportImplicitOverride": "none",
"reportDeprecated": "warning"
}