pip install no-slopmypy plugin (redundant type checks):
# pyproject.toml
[tool.mypy]
plugins = ["no_slop.mypy_plugin"]flake8 plugin (style checks) - auto-registers on install:
flake8 your_project/Unused defaults CLI:
no-slop-unused-defaults /path/to/project- Redundant
isinstance/hasattr/getattr/callablewhen types guarantee the result - Runtime checks on
Any/untyped values (add types instead) - ASCII art, emojis, excessive docstrings
- Default parameters never used by any call site
See docs.md for full documentation.