-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyrightconfig.json
More file actions
24 lines (24 loc) · 841 Bytes
/
Copy pathpyrightconfig.json
File metadata and controls
24 lines (24 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
// Strict for OUR code. The reportUnknown* family is disabled because it
// punishes consumers of untyped third-party libs (pandas, plotly, bs4,
// fontTools) rather than our own annotations — everything else in strict
// mode (missing param/return types, implicit Any in our defs, unused
// symbols, etc.) still fails. Env comes from scripts/python-dev-requirements.txt.
"typeCheckingMode": "strict",
"pythonVersion": "3.12",
"venvPath": ".",
"venv": ".venv",
"exclude": [
"sandbox",
"**/node_modules",
".claude",
"packages/discord-plays-mario-kart/wasm-src",
".venv"
],
"reportUnknownMemberType": false,
"reportUnknownArgumentType": false,
"reportUnknownVariableType": false,
"reportUnknownParameterType": false,
"reportUnknownLambdaType": false,
"reportMissingTypeStubs": false
}