pyrightconfig.json: Mirror strict mypy settings
All checks were successful
CI / Packaging - Kali Linux (pull_request) Successful in 4m6s
CI / Packaging - OpenSUSE Tumbleweed (pull_request) Successful in 4m12s
CI / Packaging test (pull_request) Successful in 0s
CI / Packaging - Kali Linux (push) Successful in 4m9s
CI / Packaging - OpenSUSE Tumbleweed (push) Successful in 4m0s
CI / Packaging test (push) Successful in 0s

Follow the changes in the mypy check profile by adding additional
checks.

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-07-24 08:39:36 +02:00
commit be46a5ebcf

View file

@ -1,7 +1,14 @@
{
"typeCheckingMode": "basic",
"typeCheckingMode": "strict",
"pythonPlatform": "Linux",
"useLibraryCodeForTypes": true,
"verboseOutput": false,
"reportImplicitOverride": "error"
"reportImplicitOverride": "error",
"reportDeprecated": "error",
"reportMatchNotExhaustive": "error",
"reportUnnecessaryTypeIgnoreComment": "error",
"reportImplicitStringConcatenation": "error",
"reportUninitializedInstanceVariable": "error"
}