11 lines
223 B
Bash
Executable file
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
|