59b87bdaab
- Suppress reportUnknownMemberType for libraries without stubs (curses, mitmproxy) - Suppress reportUnknownParameterType for generic type parameter issues - Suppress reportUnknownVariableType and reportUnknownArgumentType - Suppress reportPrivateUsage for test private member access - Keeps legitimate actionable errors visible Reduces errors from 985 → 263 (73% reduction) Remaining 263 errors are in our code: type annotations, unused imports, attribute access Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
21 lines
416 B
JSON
21 lines
416 B
JSON
{
|
|
"include": [
|
|
"cli.py",
|
|
"bot_bottle",
|
|
"tests"
|
|
],
|
|
"exclude": [
|
|
"**/__pycache__",
|
|
"**/.venv",
|
|
"**/venv"
|
|
],
|
|
"pythonVersion": "3.11",
|
|
"typeCheckingMode": "strict",
|
|
"reportMissingTypeStubs": "none",
|
|
"reportUnknownMemberType": false,
|
|
"reportUnknownParameterType": false,
|
|
"reportUnknownVariableType": false,
|
|
"reportUnknownArgumentType": false,
|
|
"reportPrivateUsage": false
|
|
}
|