jw.pkg: Massively tighten linter checks #53

Merged
Jan Lindemann merged 31 commits from jan/feature/20260809-pyrightconfig-json-mirror-strict-mypy-settings into master 2026-08-09 15:12:37 +02:00 AGit
Showing only changes of commit b3fee32ee1 - Show all commits

pyproject.toml: Enable mypy.disallow_untyped_calls

Add disallow_untyped_calls = true to the mypy configuration. This
requires all function calls from typed code to target typed functions,
ensuring better type safety across the codebase.

Assisted-by: unsloth/Qwen3.6-35B-A3B-GGUF:IQ4_NL and pi.dev 0.81.1
Signed-off-by: Jan Lindemann <jan@janware.com>
Jan Lindemann 2026-07-22 22:48:35 +02:00

View file

@ -12,6 +12,8 @@
warn_unreachable = true
disallow_untyped_calls = true
enable_error_code = [
"explicit-override",
"ignore-without-code",