Pylint is a static code analyser for Python 2 or 3. Pylint analyses your code without actually running it. It checks for errors, enforces a coding standard, looks for code smells, and can make suggestions about how the code could be refactored. -- pylint on pypi.org
-
✏️ Identify the file to be inspected. Example:
export SENZING_PYTHON=redoer.py
-
List all type of errors seen in the file. Example:
pylint --msg-template="{symbol}" ${SENZING_PYTHON} | sort | uniq