summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2014-04-18 15:30:12 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2014-04-18 15:30:12 +0200
commit8ae7a22ad67a416068068850c95f0f98e35e6072 (patch)
tree167d767d504065ba05747139bb42aa21bd0d959c /man
parent3b86291897c0a610a332201fc5f117caf080993b (diff)
downloadpylint-8ae7a22ad67a416068068850c95f0f98e35e6072.tar.gz
regenerate doc/example/man
Diffstat (limited to 'man')
-rw-r--r--man/pylint.16
1 files changed, 4 insertions, 2 deletions
diff --git a/man/pylint.1 b/man/pylint.1
index f80c61c..480ac18 100644
--- a/man/pylint.1
+++ b/man/pylint.1
@@ -1,4 +1,4 @@
-.TH pylint 1 "2014-4-11" pylint
+.TH pylint 1 "2014-4-18" pylint
.SH NAME
.B pylint
\- python code static checker
@@ -210,6 +210,8 @@ List of note tags to take in consideration, separated by a comma. [current: FIXM
.SH TYPECHECK
.IP "--ignore-mixin-members=<y_or_n>"
Tells whether missing members accessed in mixin class should be ignored. A mixin class is detected if its name ends with "mixin" (case insensitive). [current: yes]
+.IP "--ignored-modules=<module names>"
+List of module names for which member attributes should not be checked (useful for modules/projects where namespaces are manipulated during runtime and thus extisting member attributes cannot be deduced by static analysis [current: none]
.IP "--ignored-classes=<members names>"
List of classes names for which member attributes should not be checked (useful for classes with attributes dynamically set). [current: SQLObject]
.IP "--zope=<y_or_n>"
@@ -221,7 +223,7 @@ List of members which are set dynamically and missed by pylint inference system,
.IP "--init-import=<y_or_n>"
Tells whether we should check for unused import in __init__ files. [current: no]
.IP "--dummy-variables-rgx=<regexp>"
-A regular expression matching the beginning of the name of dummy variables (i.e. not used). [current: _|dummy]
+A regular expression matching the name of dummy variables (i.e. expectedly not used). [current: _|dummy]
.IP "--additional-builtins=<comma separated list>"
List of additional names supposed to be defined in builtins. Remember that you should avoid to define new builtins when possible. [current: none]