Skip to content

Commit 0c8acea

Browse files
committed
Merge branch 'main' into patch-1
2 parents 64f144c + 0c464c2 commit 0c8acea

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

doc/user_guide/configuration/all-options.rst

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -155,17 +155,7 @@ Standard Checkers
155155

156156
--output-format
157157
"""""""""""""""
158-
*Set the output format. Available formats are:*
159-
160-
* ``text``
161-
* ``parseable``
162-
* ``colorized``
163-
* ``json2``: improved json format
164-
* ``json``: old json format
165-
* ``msvs``: visual studio
166-
* ``github``: `GitHub action messages <https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions>`_
167-
168-
You can also give a reporter class, e.g. mypackage.mymodule.MyReporterClass.
158+
*Set the output format. Available formats are: 'text', 'parseable', 'colorized', 'json2' (improved json format), 'json' (old json format), msvs (visual studio) and 'github' (GitHub actions). You can also give a reporter class, e.g. mypackage.mymodule.MyReporterClass.*
169159

170160
**Default:** ``text``
171161

pylint/lint/base_options.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ def _make_linter_options(linter: PyLinter) -> Options:
102102
"metavar": "<format>",
103103
"short": "f",
104104
"group": "Reports",
105-
"help": "Set the output format. Available formats are: text, "
106-
"parseable, colorized, json2 (improved json format), json "
107-
"(old json format) and msvs (visual studio). "
105+
"help": "Set the output format. Available formats are: 'text', "
106+
"'parseable', 'colorized', 'json2' (improved json format), 'json' "
107+
"(old json format), msvs (visual studio) and 'github' (GitHub actions). "
108108
"You can also give a reporter class, e.g. mypackage.mymodule."
109109
"MyReporterClass.",
110110
"kwargs": {"linter": linter},

0 commit comments

Comments
 (0)