Disable pylint rules for stable-2.4.
ci_complete
This commit is contained in:
parent
8d91a6d72e
commit
dc90280b8f
1 changed files with 16 additions and 0 deletions
|
@ -4,12 +4,15 @@ disable=
|
||||||
abstract-method,
|
abstract-method,
|
||||||
access-member-before-definition,
|
access-member-before-definition,
|
||||||
anomalous-backslash-in-string,
|
anomalous-backslash-in-string,
|
||||||
|
anomalous-unicode-escape-in-string,
|
||||||
arguments-differ,
|
arguments-differ,
|
||||||
assignment-from-no-return,
|
assignment-from-no-return,
|
||||||
attribute-defined-outside-init,
|
attribute-defined-outside-init,
|
||||||
bad-continuation,
|
bad-continuation,
|
||||||
|
bad-format-string,
|
||||||
bad-indentation,
|
bad-indentation,
|
||||||
bad-mcs-classmethod-argument,
|
bad-mcs-classmethod-argument,
|
||||||
|
bad-open-mode,
|
||||||
bad-whitespace,
|
bad-whitespace,
|
||||||
bare-except,
|
bare-except,
|
||||||
blacklisted-name,
|
blacklisted-name,
|
||||||
|
@ -19,9 +22,11 @@ disable=
|
||||||
consider-merging-isinstance,
|
consider-merging-isinstance,
|
||||||
consider-using-enumerate,
|
consider-using-enumerate,
|
||||||
consider-using-ternary,
|
consider-using-ternary,
|
||||||
|
dangerous-default-value,
|
||||||
deprecated-lambda,
|
deprecated-lambda,
|
||||||
deprecated-method,
|
deprecated-method,
|
||||||
deprecated-module,
|
deprecated-module,
|
||||||
|
duplicate-key,
|
||||||
eval-used,
|
eval-used,
|
||||||
exec-used,
|
exec-used,
|
||||||
expression-not-assigned,
|
expression-not-assigned,
|
||||||
|
@ -40,6 +45,9 @@ disable=
|
||||||
line-too-long,
|
line-too-long,
|
||||||
literal-comparison,
|
literal-comparison,
|
||||||
locally-disabled,
|
locally-disabled,
|
||||||
|
logging-format-interpolation,
|
||||||
|
logging-not-lazy,
|
||||||
|
lost-exception,
|
||||||
method-hidden,
|
method-hidden,
|
||||||
misplaced-comparison-constant,
|
misplaced-comparison-constant,
|
||||||
missing-docstring,
|
missing-docstring,
|
||||||
|
@ -57,10 +65,12 @@ disable=
|
||||||
pointless-statement,
|
pointless-statement,
|
||||||
pointless-string-statement,
|
pointless-string-statement,
|
||||||
protected-access,
|
protected-access,
|
||||||
|
raising-bad-type,
|
||||||
redefined-argument-from-local,
|
redefined-argument-from-local,
|
||||||
redefined-builtin,
|
redefined-builtin,
|
||||||
redefined-outer-name,
|
redefined-outer-name,
|
||||||
redefined-variable-type,
|
redefined-variable-type,
|
||||||
|
redundant-unittest-assert,
|
||||||
reimported,
|
reimported,
|
||||||
relative-import,
|
relative-import,
|
||||||
signature-differs,
|
signature-differs,
|
||||||
|
@ -81,12 +91,16 @@ disable=
|
||||||
too-many-return-statements,
|
too-many-return-statements,
|
||||||
too-many-statements,
|
too-many-statements,
|
||||||
trailing-comma-tuple,
|
trailing-comma-tuple,
|
||||||
|
trailing-newlines,
|
||||||
unbalanced-tuple-unpacking,
|
unbalanced-tuple-unpacking,
|
||||||
undefined-loop-variable,
|
undefined-loop-variable,
|
||||||
unexpected-keyword-arg,
|
unexpected-keyword-arg,
|
||||||
ungrouped-imports,
|
ungrouped-imports,
|
||||||
unidiomatic-typecheck,
|
unidiomatic-typecheck,
|
||||||
|
unnecessary-lambda,
|
||||||
|
unnecessary-pass,
|
||||||
unneeded-not,
|
unneeded-not,
|
||||||
|
unreachable,
|
||||||
unsubscriptable-object,
|
unsubscriptable-object,
|
||||||
unsupported-assignment-operation,
|
unsupported-assignment-operation,
|
||||||
unsupported-delete-operation,
|
unsupported-delete-operation,
|
||||||
|
@ -96,7 +110,9 @@ disable=
|
||||||
unused-variable,
|
unused-variable,
|
||||||
unused-wildcard-import,
|
unused-wildcard-import,
|
||||||
used-before-assignment,
|
used-before-assignment,
|
||||||
|
useless-else-on-loop,
|
||||||
useless-super-delegation,
|
useless-super-delegation,
|
||||||
|
using-constant-test,
|
||||||
wildcard-import,
|
wildcard-import,
|
||||||
wrong-import-order,
|
wrong-import-order,
|
||||||
wrong-import-position,
|
wrong-import-position,
|
||||||
|
|
Loading…
Reference in a new issue