Messages¶
Messages categories¶
Pylint can emit various messages. These are categorized according to categories corresponding to bit-encoded exit codes:
Fatal (1)
Error (2)
Warning (4)
Convention (8)
Refactor (16)
Information (NA)
An overview of these messages can be found in Messages overview
Disabling messages¶
pylint
has an advanced message control for its checks, offering the ability
to enable / disable a message either from the command line or from the configuration
file, as well as from the code itself.
For more detail see Messages control