vulture finds unused code in Python programs. It is useful for cleaning up and finding errors in large code bases.
Tips on pylint
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
Tips and Traps
Optional Pylint checkers in the extensions module
Message Control
-
Show ERROR messages only.
pylint -E some_script.py
-
Show ERROR and WARNING messages only.
pylint --disable=R,C some_script …