core/services/pyrightconfig.json
Untone 7bbb847eb1
All checks were successful
Deploy on push / deploy (push) Successful in 1m36s
tests, maintainance fixes
2025-05-16 09:22:53 +03:00

20 lines
518 B
JSON

{
"include": ["."],
"exclude": ["**/node_modules", "**/__pycache__", "**/.*"],
"defineConstant": {
"DEBUG": true
},
"venvPath": ".",
"venv": ".venv",
"pythonVersion": "3.11",
"typeCheckingMode": "strict",
"reportMissingImports": true,
"reportMissingTypeStubs": false,
"reportUnknownMemberType": false,
"reportUnknownParameterType": false,
"reportUnknownVariableType": false,
"reportUnknownArgumentType": false,
"reportPrivateUsage": false,
"reportUntypedFunctionDecorator": false
}