Files
gh-basher83-lunar-claude-pl…/skills/python-code-quality/examples/pyrightconfig-strict.json
2025-11-29 18:00:18 +08:00

21 lines
432 B
JSON

{
"include": ["src"],
"exclude": [
"**/node_modules",
"**/__pycache__",
".venv",
"build",
"dist"
],
"venvPath": ".",
"venv": ".venv",
"typeCheckingMode": "strict",
"reportMissingTypeStubs": true,
"reportUnknownMemberType": true,
"reportUnknownArgumentType": true,
"reportUnknownVariableType": true,
"reportPrivateUsage": true,
"reportUnusedImport": true,
"reportUnusedVariable": true
}