|
|
|
@ -26,6 +26,7 @@ load-plugins=
|
|
|
|
|
# can either give multiple identifier separated by comma (,) or put this option
|
|
|
|
|
# multiple time (only on the command line, not in the configuration file where
|
|
|
|
|
# it should appear only once).
|
|
|
|
|
# W0107: Unnecessary pass statement (unnecessary-pass)
|
|
|
|
|
# W0120 useless-else-on-loop
|
|
|
|
|
# W0125 using-constant-test
|
|
|
|
|
# W0212 protected-access var starting with _ used outside class or descendant
|
|
|
|
@ -42,9 +43,12 @@ load-plugins=
|
|
|
|
|
# W0621 redefined-outer-name
|
|
|
|
|
# W0622 redefined-builtin
|
|
|
|
|
# W0703 broad except warning
|
|
|
|
|
# W0706: The except handler raises immediately (try-except-raise)
|
|
|
|
|
# W1401 anomalous-backslash-in-string
|
|
|
|
|
# W1505: Using deprecated method getargspec() (deprecated-method)
|
|
|
|
|
disable=C, R, W0120, W0125, W0212, W0221, W0223, W0231, W0235,
|
|
|
|
|
W0401, W0404, W0511, W0603, W0612, W0613, W0621, W0622, W0703, W1401
|
|
|
|
|
W0401, W0404, W0511, W0603, W0612, W0613, W0621, W0622, W0703, W1401,
|
|
|
|
|
W0107, W0706, W1505
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[REPORTS]
|
|
|
|
@ -98,7 +102,13 @@ ignore-mixin-members=yes
|
|
|
|
|
# List of classes names for which member attributes should not be checked
|
|
|
|
|
# (useful for classes with attributes dynamically set).
|
|
|
|
|
# The following VIM objects are ignored: ObjectData, GuestService, Network, SwUpdate
|
|
|
|
|
ignored-classes=SQLObject,sqlalchemy,scoped_session,_socketobject,ObjectData,GuestService,Network,SwUpdate
|
|
|
|
|
# The following Openstack plugin object is ignored: OpenStackRestAPIException
|
|
|
|
|
ignored-classes=SQLObject,sqlalchemy,scoped_session,_socketobject,ObjectData,GuestService,
|
|
|
|
|
Network,SwUpdate,OpenStackRestAPIException
|
|
|
|
|
|
|
|
|
|
# For compatibility of python2 and python 3, we import six.moves module, and
|
|
|
|
|
# the following py3 modules are ignored: http.client, urllib.request
|
|
|
|
|
ignored-modules=http.client,urllib.request
|
|
|
|
|
|
|
|
|
|
# List of members which are set dynamically and missed by pylint inference
|
|
|
|
|
# system, and so shouldn't trigger E0201 when accessed. Python regular
|
|
|
|
|