Comment on Python 3.3.0 releasedparentComments−protomyth13yIs there a LINT for Python? It looks like there was a question about them on Stack Overflow, but it was closed. http://stackoverflow.com/questions/5611776/what-are-the-comp...−duskwuff13yAside from pylint which everyone has already mentioned, there's also pyflakes.http://pypi.python.org/pypi/pyflakes−reinhardt13yPylint is the most comprehensive, even if too noisy by default. After editing ~/.pylintrc to disable some overly strict checks it's pretty decent.−mrj13ypylint is probably the most commonly used:http://www.logilab.org/857
Comments
Is there a LINT for Python? It looks like there was a question about them on Stack Overflow, but it was closed. http://stackoverflow.com/questions/5611776/what-are-the-comp...
Aside from pylint which everyone has already mentioned, there's also pyflakes.
http://pypi.python.org/pypi/pyflakes
Pylint is the most comprehensive, even if too noisy by default. After editing ~/.pylintrc to disable some overly strict checks it's pretty decent.
pylint is probably the most commonly used:
http://www.logilab.org/857