pylint Command Examples

A Python code linter. More information: https://pylint.pycqa.org/en/latest/.

pylint {{path/to/file.py}}

pylint {{package_or_module}}

pylint {{path/to/directory}}

pylint --rcfile {{path/to/pylintrc}} {{path/to/file.py}}

pylint --disable {{C,W,no-error,design}} {{path/to/file}}