forked from FG42/FG42
1
0
Fork 0
FG42/conf/emacs.d/pyemacs.sh

8 lines
106 B
Bash
Executable File

#!/bin/bash
epylint "$1" 2>/dev/null
pyflakes "$1"
pep8 --ignore=E221,E701,E202,E128 --repeat "$1"
true