I have
find . -iname \"*.py\" -exec pylint -E {} ;\\
and
FILES=$(find . -iname \"*.py\") pylint -E $FILES
If
pytest with pytest-pylint can trivially run pylint on all Python files:
In your setup.cfg file in the root directory of your project, ensure you have at minimum:
setup.cfg
[tool:pytest] addopts = --pylint
Next, run pytest on the command line.
pytest