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

18 lines
352 B
JSON

{
"include": ["src", "tests"],
"exclude": [
"**/node_modules",
"**/__pycache__",
".venv",
"build",
"dist"
],
"venvPath": ".",
"venv": ".venv",
"typeCheckingMode": "basic",
"reportMissingTypeStubs": false,
"reportUnknownMemberType": false,
"reportUnknownArgumentType": false,
"reportUnknownVariableType": false
}