I thought this use of pep8 would be of interest to the group.
I'm using pyflakes and pep8. I've had much more success getting pyflakes
to run than pylint. Pyflakes' advantage is that it doesn't need to
import your code.
http://reinout.vanrees.org/weblog/2009/09/28/fixing-up-code.html
Emacs' ctrl-c ctrl-w is by default bound to pychecker. I modified that
to run pychecker.sh:
#!/bin/bash
pyflakes $1
echo "## pyflakes above, pep8 below ##"
pep8 --repeat $1
Great way to get a good clickable error report that goes right to the
offending line in your python code (probably just like in the post you
linked).
Reinout
--
Reinout van Rees - rei...@vanrees.org - http://reinout.vanrees.org
Programmer at http://www.nelen-schuurmans.nl
"Military engineers build missiles. Civil engineers build targets"