Skip to content

Commit

Permalink
Feature 9930 Add option to list configuration values
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsugara22 committed Oct 19, 2024
1 parent 5feface commit c7293f4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pylint/lint/base_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,6 +426,22 @@ def _make_linter_options(linter: PyLinter) -> Options:
"messages.",
},
),
(
"config-list",
{
"action": "store_true",
"default": False,
"help": "Show current configuration values.",
},
),
(
"config-list-show-origin",
{
"action": "store_true",
"default": False,
"help": "Show current configuration values along with their origin.",
},
),
)


Expand Down

0 comments on commit c7293f4

Please sign in to comment.