diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2007-03-07 10:15:39 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2007-03-07 10:15:39 +0100 |
commit | 6431713667ec1cbd2519133aa039653a5dacd901 (patch) | |
tree | 7bfbd88745266a0a6d992ccf4d8e8a8f2ec361f2 /examples | |
parent | 7eb163456cf0c19c57eaffa9e5881f25b86a7c92 (diff) | |
download | pylint-git-6431713667ec1cbd2519133aa039653a5dacd901.tar.gz |
regenerate doc
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pylintrc | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/examples/pylintrc b/examples/pylintrc index a088ee51a..a0786ab83 100644 --- a/examples/pylintrc +++ b/examples/pylintrc @@ -8,6 +8,13 @@ # [MASTER] +# Specify a configuration file. +#rcfile= + +# Python code to execute, usually for sys.path manipulation such as +# pygtk.require(). +#init-hook= + # Profiled execution. profile=no @@ -26,14 +33,33 @@ cache-size=500 load-plugins= +[MESSAGES CONTROL] + +# Enable only checker(s) with the given id(s). This option conflict with the +# disable-checker option +#enable-checker= + +# Enable all checker(s) except those with the given id(s). This option conflict +# with the disable-checker option +#disable-checker= +# Enable all messages in the listed categories. +#enable-msg-cat= +# Disable all messages in the listed categories. +#disable-msg-cat= + +# Enable the message(s) with the given id(s). +#enable-msg= + +# Disable the message(s) with the given id(s). +#disable-msg= [REPORTS] -# set the output format. Available formats are text, parseable, colorized and -# html +# set the output format. Available formats are text, parseable, colorized, msvs +# (visual studio) and html output-format=text # Include message's id in output @@ -58,6 +84,12 @@ evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / stateme # evaluation report (R0004). comment=no +# Enable the report(s) with the given id(s). +#enable-report= + +# Disable the report(s) with the given id(s). +#disable-report= + # checks for : # * doc strings |