Created
July 9, 2014 08:04
-
-
Save intellectronica/6bcff2803439e9592399 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
pylint --rcfile=pylint_rcfile.txt -r n -f parseable --disable=E1101,E1103,W0312,F0401,R0201,R0903,W0232,W0703 "$1" 2>/dev/null | |
pyflakes "$1" | |
pep8 --ignore=E126,E221,E701,E202,W191,E101 --repeat "$1" | |
true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not sure where that rcfile is though