pylint
TLDR
Check Python file
SYNOPSIS
pylint [options] modules
DESCRIPTION
pylint analyzes Python code for errors and style. Comprehensive linter.
The tool checks code quality. Reports violations and suggestions.
pylint lints Python.
PARAMETERS
MODULES
Python modules to check.--rcfile FILE
Configuration file.--disable IDS
Disable checks.--enable IDS
Enable checks.--output-format FORMAT
Output format.--generate-rcfile
Generate config.
CAVEATS
Can be slow on large codebases. Highly configurable.
HISTORY
Pylint was created as a comprehensive Python code analysis tool.
