summaryrefslogtreecommitdiffstats
path: root/dogtag.pylintrc
diff options
context:
space:
mode:
authorMatthew Harmsen <mharmsen@pki.usersys.redhat.com>2015-03-17 23:43:03 -0600
committerMatthew Harmsen <mharmsen@pki.usersys.redhat.com>2015-03-17 23:43:03 -0600
commitfa260ee8023c37936d432e52e69ade02a43cecee (patch)
treea86fa0e7b2aee271a6e26f5afe70595ed470c28c /dogtag.pylintrc
parent0e118a4888caafccdd0a9268c958015d43db19d4 (diff)
downloadpki-fa260ee8023c37936d432e52e69ade02a43cecee.tar.gz
pki-fa260ee8023c37936d432e52e69ade02a43cecee.tar.xz
pki-fa260ee8023c37936d432e52e69ade02a43cecee.zip
Fix for pylint 1.3 --> 1.4 (e1101 - no member on all C extension)
- Reference: http://stackoverflow.com/questions/28437071/pylint-1-4-reports-e1101no-member-on-all-c-extensions
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 495b25c47..cd045f5ec 100644
--- a/dogtag.pylintrc
+++ b/dogtag.pylintrc
@@ -21,6 +21,11 @@ persistent=yes
# usually to register additional checkers.
load-plugins=
+# A comma-separated list of package or module names from where C extensions may
+# be loaded. Extensions are loading into the active Python interpreter and may
+# run arbitrary code
+extension-pkg-whitelist=ldap,lxml,nss
+
[MESSAGES CONTROL]