I have
find . -iname \"*.py\" -exec pylint -E {} ;\\
and
FILES=$(find . -iname \"*.py\") pylint -E $FILES
If
Just pass the directory name to the pylint command. To lint all files in ./server:
./server
pylint server