chrono/pylint.sh

6 lines
138 B
Bash
Executable File

#!/bin/bash
set -e -x
env
pylint --jobs ${NUMPROCESSES:-1} -f parseable --rcfile pylint.rc "$@" | tee pylint.out; test $PIPESTATUS -eq 0