Skip to content

Commit ba7bbc6

Browse files
doc
1 parent b080a21 commit ba7bbc6

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

doc/user_guide/checkers/extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Verbatim name of the checker is ``dict-init-mutate``.
270270

271271
Dict-Init-Mutate checker Messages
272272
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
273-
:dict-init-mutate (C3401): *Declare all known key/values when initializing the dictionary.*
273+
:dict-init-mutate (C3401): *Declare all known key/values when initializing the dictionary: %s*
274274
Dictionaries can be initialized with a single statement using dictionary
275275
literal syntax.
276276

doc/user_guide/configuration/all-options.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
Standard Checkers
99
^^^^^^^^^^^^^^^^^
1010

11-
Remember that only ``tool.pylint`` is required, the section title is not. There are specific notes under each example that cover this.
1211

1312
.. _main-options:
1413

@@ -91,6 +90,13 @@ Remember that only ``tool.pylint`` is required, the section title is not. There
9190
**Default:** ``10``
9291

9392

93+
--files
94+
"""""""
95+
*The files to lint. The flag can also be omitted as pylint will try to lint any file passed as argument. This can be used to set files to a directory in a configuration file and invoke pylint by only typing pylint on the command line. Any file passed as argument will overwrite any file set in the configuration file.*
96+
97+
**Default:** ``[]``
98+
99+
94100
--from-stdin
95101
""""""""""""
96102
*Interpret the stdin as a python script, whose filename needs to be passed as the module_or_package argument.*
@@ -250,6 +256,8 @@ Remember that only ``tool.pylint`` is required, the section title is not. There
250256
251257
fail-under = 10
252258
259+
files = []
260+
253261
from-stdin = false
254262
255263
ignore = ["CVS"]

0 commit comments

Comments
 (0)