summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSylvain <syt@logilab.fr>2007-03-07 10:15:39 +0100
committerSylvain <syt@logilab.fr>2007-03-07 10:15:39 +0100
commit10af1d7948e0d78eaf8d1e48a002af41f4819cf5 (patch)
treeb6bea19494c69edae7be29128fc220e23e529937 /examples
parent8bb5330d3376963138d5b47d376ccc21dab05cbe (diff)
downloadpylint-10af1d7948e0d78eaf8d1e48a002af41f4819cf5.tar.gz
regenerate doc
Diffstat (limited to 'examples')
-rw-r--r--examples/pylintrc36
1 files changed, 34 insertions, 2 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index a088ee5..a0786ab 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