diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2008-02-07 09:26:40 +0100 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2008-02-07 09:26:40 +0100 |
commit | eae036d87aac831dcb6e64226170cb7378bd450e (patch) | |
tree | 8e982fd33810836b08c635067dfbe52e29c85df1 /examples | |
parent | 07340dcbb0198ee3cf551a1453292aa81abf0b24 (diff) | |
download | pylint-git-eae036d87aac831dcb6e64226170cb7378bd450e.tar.gz |
regenerated documentation
Diffstat (limited to 'examples')
-rw-r--r-- | examples/pylintrc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/examples/pylintrc b/examples/pylintrc index a0786ab83..56b079125 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 |