jw.pkg: Massively tighten linter checks #53
1 changed files with 4 additions and 1 deletions
pyproject.toml: Enable mypy.ignore-without-code
Add the ignore-without-code error code to the mypy configuration. This requires all # type: ignore comments to include a specific error code, improving the precision and maintainability of type ignore annotations. Assisted-by: unsloth/Qwen3.6-35B-A3B-GGUF:IQ4_NL and pi.dev 0.81.1 Signed-off-by: Jan Lindemann <jan@janware.com>
commit
5f6559dbe0
|
|
@ -2,7 +2,10 @@
|
|||
|
||||
{mypypath}
|
||||
|
||||
enable_error_code = "explicit-override"
|
||||
enable_error_code = [
|
||||
"explicit-override",
|
||||
"ignore-without-code",
|
||||
]
|
||||
|
||||
[tool.isort]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue