pyrightconfig.json•687 B
{
"include": ["src"],
"exclude": ["**/__pycache__", "tests"],
"reportMissingImports": "error",
"reportMissingTypeStubs": "warning",
"reportUndefinedVariable": "error",
"reportGeneralTypeIssues": "warning",
"reportAttributeAccessIssue": "warning",
"reportCallIssue": "error",
"reportArgumentType": "warning",
"reportAssignmentType": "warning",
"reportReturnType": "warning",
"reportPossiblyUnboundVariable": "warning",
"pythonVersion": "3.12",
"typeCheckingMode": "basic",
"useLibraryCodeForTypes": false,
"reportUnusedImport": "warning",
"reportUnusedClass": "information",
"reportUnusedFunction": "information",
"reportUnusedVariable": "warning"
}