File tree 3 files changed +22
-21
lines changed
3 files changed +22
-21
lines changed Original file line number Diff line number Diff line change 3
3
Messages
4
4
========
5
5
6
+ Pylint can emit various messages. These are categorized according
7
+ to categories corresponding to bit-encoded exit codes:
8
+
9
+ * Fatal :ref: `Fatal ` (1)
10
+ * Error :ref: `Error ` (2)
11
+ * Warning :ref: `Warning ` (4)
12
+ * Convention :ref: `Convention ` (8)
13
+ * Refactor :ref: `Refactor ` (16)
14
+ * Information :ref: `Information ` (NA)
15
+
16
+ A list of these messages can be found in :ref: `messages-list `
17
+
18
+ Disabling messages
19
+ ==================
20
+
21
+ ``pylint `` has an advanced message control for its checks, offering the ability
22
+ to enable / disable a message either from the command line or from the configuration
23
+ file, as well as from the code itself.
24
+
25
+ For more detail see :ref: `messages_control `
26
+
6
27
.. toctree ::
7
28
:maxdepth: 1
8
29
9
- messages_introduction.rst
10
30
messages_list.rst
11
31
message_control.rst
Original file line number Diff line number Diff line change 3
3
Messages control
4
4
================
5
5
6
- ``pylint `` has an advanced message control for its checks, offering the ability
7
- to enable / disable a message either from the command line or from the configuration
8
- file, as well as from the code itself.
9
-
10
- For all of these controls, ``pylint `` accepts the following values:
6
+ In order to control messages, ``pylint `` accepts the following values:
11
7
12
8
* a symbolic message: ``no-member ``, ``undefined-variable `` etc.
13
9
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments