Add --extend-select command line argument

Implement `--extend-select` command line argument following what was
done for `--extend-ignore` in !233. This option can be used to
selectively add individual codes without overriding the default list
entirely.

Addresses the remaining item of issue #1061.
This commit is contained in:
Frank Winklmeier 2021-04-10 14:24:54 +02:00
parent 9815f49cc4
commit f98afbf7d9
6 changed files with 85 additions and 17 deletions

View file

@ -115,6 +115,10 @@ And you should see something like:
run. (Default: 79)
--select=errors Comma-separated list of errors and warnings to enable.
For example, ``--select=E4,E51,W234``. (Default: )
--extend-select errors
Comma-separated list of errors and warnings to add to
the list of selected ones. For example, ``--extend-
select=E4,E51,W234``.
--disable-noqa Disable the effect of "# noqa". This will report
errors on lines with "# noqa" at the end.
--show-source Show the source generate each error or warning.