summaryrefslogtreecommitdiffstats
path: root/dogtag.pylintrc
diff options
context:
space:
mode:
authorMatthew Harmsen <mharmsen@pki.usersys.redhat.com>2015-03-18 09:35:28 -0600
committerMatthew Harmsen <mharmsen@pki.usersys.redhat.com>2015-03-18 09:35:28 -0600
commitbabd6e2bc75d89a5f7e5400b11751c5a52bfb1d1 (patch)
tree924ade60a9b03f907add13842f5c46e35a207850 /dogtag.pylintrc
parentfa260ee8023c37936d432e52e69ade02a43cecee (diff)
downloadpki-babd6e2bc75d89a5f7e5400b11751c5a52bfb1d1.tar.gz
pki-babd6e2bc75d89a5f7e5400b11751c5a52bfb1d1.tar.xz
pki-babd6e2bc75d89a5f7e5400b11751c5a52bfb1d1.zip
Fix for pylint 1.3 --> 1.4
Placing 'ldap' on the whitelist was insufficient for the Fedora 22 i686 platform, therefore, ldap was added to 'ignored-modules'.
Diffstat (limited to 'dogtag.pylintrc')
-rw-r--r--dogtag.pylintrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/dogtag.pylintrc b/dogtag.pylintrc
index cd045f5ec..3ffb1ab71 100644
--- a/dogtag.pylintrc
+++ b/dogtag.pylintrc
@@ -129,6 +129,11 @@ ignore-imports=no
# mixin class is detected if its name ends with "mixin" (case insensitive).
ignore-mixin-members=yes
+# List of module names for which member attributes should not be checked
+# (useful for modules/projects where namespaces are manipulated during runtime
+# and thus existing member attributes cannot be deduced by static analysis
+ignored-modules=ldap
+
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set).
ignored-classes=SQLObject