Update pylint disable list to pass pylint 1.7.1 checks

Recenly pylint version was bumped to 1.7.1 in global-requirements.txt.
Pylint 1.7.1 adds more checks and breaks the neutron pep8 job.

This commit adds new checks to the disabled list to avoid the gate
breakage. Individual disabled tests can be fixed later.

The new disabled list is compatible with pylint 1.4.5,
so we can merge this regardless of pylint bump is reverted or not.

Closes-Bug: #1696403
Change-Id: If6228d0626413049b82f9d75bcdf3bea7ddacde5
This commit is contained in:
Akihiro Motoki 2017-06-07 13:01:03 +00:00 committed by garyk
parent 1e98b0a83e
commit 17ed89cbc1
1 changed files with 16 additions and 0 deletions

View File

@ -18,6 +18,7 @@ disable=
no-member, no-member,
no-method-argument, no-method-argument,
no-self-argument, no-self-argument,
not-an-iterable,
# "W" Warnings for stylistic problems or minor programming issues # "W" Warnings for stylistic problems or minor programming issues
abstract-method, abstract-method,
arguments-differ, arguments-differ,
@ -30,6 +31,7 @@ disable=
expression-not-assigned, expression-not-assigned,
fixme, fixme,
global-statement, global-statement,
literal-comparison,
no-init, no-init,
non-parent-init-called, non-parent-init-called,
not-callable, not-callable,
@ -44,19 +46,32 @@ disable=
unused-argument, unused-argument,
unused-import, unused-import,
unused-variable, unused-variable,
useless-super-delegation,
# TODO(dougwig) - disable nonstandard-exception while we have neutron_lib shims # TODO(dougwig) - disable nonstandard-exception while we have neutron_lib shims
nonstandard-exception, nonstandard-exception,
# "C" Coding convention violations # "C" Coding convention violations
bad-continuation, bad-continuation,
consider-iterating-dictionary,
consider-using-enumerate,
invalid-name, invalid-name,
len-as-condition,
misplaced-comparison-constant,
missing-docstring, missing-docstring,
singleton-comparison,
superfluous-parens, superfluous-parens,
ungrouped-imports,
wrong-import-order,
# "R" Refactor recommendations # "R" Refactor recommendations
abstract-class-little-used, abstract-class-little-used,
abstract-class-not-used, abstract-class-not-used,
consider-merging-isinstance,
consider-using-ternary,
duplicate-code, duplicate-code,
interface-not-implemented, interface-not-implemented,
no-else-return,
no-self-use, no-self-use,
redefined-argument-from-local,
simplifiable-if-statement,
too-few-public-methods, too-few-public-methods,
too-many-ancestors, too-many-ancestors,
too-many-arguments, too-many-arguments,
@ -64,6 +79,7 @@ disable=
too-many-instance-attributes, too-many-instance-attributes,
too-many-lines, too-many-lines,
too-many-locals, too-many-locals,
too-many-nested-blocks,
too-many-public-methods, too-many-public-methods,
too-many-return-statements, too-many-return-statements,
too-many-statements too-many-statements