summaryrefslogtreecommitdiffstats
path: root/.pylintrc
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2017-11-15 13:32:08 -0800
committerGitHub <noreply@github.com>2017-11-15 13:32:08 -0800
commit24d2349eb93272eb71a9d6f8a5fc28f2b04881e9 (patch)
tree708532ac451121ddf0366981242a0fc7ab1afb86 /.pylintrc
parentacdd5e905be2605138143a970899672634492ecf (diff)
parent13424ed197676c15c4721fd6cecfded4479744c3 (diff)
downloadopenshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.gz
openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.bz2
openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.tar.xz
openshift-24d2349eb93272eb71a9d6f8a5fc28f2b04881e9.zip
Merge pull request #6078 from mtnbikenc/require-ansible-2.4
Automatic merge from submit-queue. Start requiring Ansible 2.4 We've tested Ansible 2.4 and need to start addressing deprecation warnings. This change will allow us to start migrating away from the `include:` directive as well as make necessary changes for obsolete AWS modules.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.pylintrc b/.pylintrc
index e85987de3..80c74b734 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -214,7 +214,8 @@ ignore-mixin-members=yes
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis. It
# supports qualified module names, as well as Unix pattern matching.
-ignored-modules=
+# Ignoring ansible.constants to suppress `no-member` warnings
+ignored-modules=ansible.constants
# List of classes names for which member attributes should not be checked
# (useful for classes with attributes dynamically set). This supports can work