summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSylvain <syt@logilab.fr>2008-02-07 09:26:40 +0100
committerSylvain <syt@logilab.fr>2008-02-07 09:26:40 +0100
commit0b01e5775136772f7a140c5c68a998df749a3b86 (patch)
tree262776cd4e7ec6b7fa2063deebe94c2749fc95fc /examples
parentc441967ec80745c0ed1efff532cc402cb1d05330 (diff)
downloadpylint-0b01e5775136772f7a140c5c68a998df749a3b86.tar.gz
regenerated documentation
Diffstat (limited to 'examples')
-rw-r--r--examples/pylintrc10
1 files changed, 7 insertions, 3 deletions
diff --git a/examples/pylintrc b/examples/pylintrc
index a0786ab..56b0791 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -35,12 +35,12 @@ load-plugins=
[MESSAGES CONTROL]
-# Enable only checker(s) with the given id(s). This option conflict with the
+# Enable only checker(s) with the given id(s). This option conflicts 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
+# Enable all checker(s) except those with the given id(s). This option
+# conflicts with the enable-checker option
#disable-checker=
# Enable all messages in the listed categories.
@@ -156,6 +156,10 @@ bad-functions=map,filter,apply,input
# mixin class is detected if its name ends with "mixin" (case insensitive).
ignore-mixin-members=yes
+# List of classes names for which member attributes should not be checked
+# (useful for classes with attributes dynamicaly set).
+ignored-classes=SQLObject
+
# When zope mode is activated, consider the acquired-members option to ignore
# access to some undefined attributes.
zope=no