Skip to content

Instantly share code, notes, and snippets.

@intellectronica
Created July 9, 2014 08:04
Show Gist options
  • Select an option

  • Save intellectronica/6bcff2803439e9592399 to your computer and use it in GitHub Desktop.

Select an option

Save intellectronica/6bcff2803439e9592399 to your computer and use it in GitHub Desktop.
#!/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
@intellectronica

Copy link
Copy Markdown
Author

Not sure where that rcfile is though

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment