summaryrefslogtreecommitdiff
path: root/doc/user_guide/messages/index.rst
blob: f663c26c9ad1d3fce38e0225b282d739bc913e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
.. _messages:

########
Messages
########

.. toctree::
  :maxdepth: 1
  :hidden:

  messages_overview.rst
  message_control.rst

Messages categories
===================

Pylint can emit various messages. These are categorized according
to categories corresponding to bit-encoded exit codes:

* :ref:`Fatal <fatal-category>` (1)
* :ref:`Error <error-category>` (2)
* :ref:`Warning <warning-category>` (4)
* :ref:`Convention <convention-category>` (8)
* :ref:`Refactor <refactor-category>` (16)
* :ref:`Information <information-category>` (NA)

An overview of these messages can be found in :ref:`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 :ref:`message-control`