Adafruit_Learning_System_Gu.../pylint_check
2018-05-14 14:14:16 -04:00

11 lines
223 B
Bash
Executable file

#!/bin/bash
function find_pyfiles() {
for f in $(find . -type f -iname '*.py'); do
if [ ! -e "$(dirname $f)/.circuitpython.skip" ]; then
echo "$f"
fi
done
}
find_pyfiles | xargs pylint