diff options
author | Trevor Bekolay <tbekolay@gmail.com> | 2019-05-14 20:17:08 -0400 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-09-12 14:23:19 +0200 |
commit | 20e432ebc0c7f760ca80e3700e64c00afb56236e (patch) | |
tree | df69ebb3063eb96793cf80b683b88ff2e3f703a0 /doc/user_guide | |
parent | b758b549a702bf4ed5ff51178eea16a97bab702e (diff) | |
download | pylint-git-20e432ebc0c7f760ca80e3700e64c00afb56236e.tar.gz |
Add a command to list enabled/disabled messages
When enabling/disabling several messages and groups in a config
file, it can be unclear which messages are actually enabled and
which are disabled. This new command produces the final resolved
lists of enabled/disabled messages, sorted by symbol but with the
ID provided for use with `--help-msg`.
This commit includes a test, documentation, and adding myself to
the contributors list, as this is my first contribution.
Diffstat (limited to 'doc/user_guide')
-rw-r--r-- | doc/user_guide/run.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/user_guide/run.rst b/doc/user_guide/run.rst index ca7e3f16b..338a07064 100644 --- a/doc/user_guide/run.rst +++ b/doc/user_guide/run.rst @@ -119,6 +119,8 @@ Other useful global options include: --output-format=<format> Select output format (text, json, custom). --msg-template=<template> Modify text output message template. --list-msgs Generate pylint's messages. +--list-msgs-enabled Display a list of what messages are enabled and + disabled with the given configuration. --full-documentation Generate pylint's full documentation, in reST format. |