To run Pylint on all code in Git version control,
pylint $(git ls-files '*.py')
This is very fast, as Git already knows the names of all of your files. It also works on macOS which lacks Bash 4. However it won't lint files that are very new and haven't been git add
ed to the repos yet.