mirror of https://github.com/scrapy/scrapy.git
Update disabled Pylint checks
This commit is contained in:
parent
a79cfce57b
commit
b59dfb75fa
5
pylintrc
5
pylintrc
|
|
@ -13,6 +13,7 @@ disable=abstract-method,
|
|||
bad-mcs-classmethod-argument,
|
||||
bad-super-call,
|
||||
bad-whitespace,
|
||||
bare-except,
|
||||
blacklisted-name,
|
||||
broad-except,
|
||||
c-extension-no-member,
|
||||
|
|
@ -39,6 +40,8 @@ disable=abstract-method,
|
|||
inconsistent-return-statements,
|
||||
inherit-non-class,
|
||||
invalid-name,
|
||||
invalid-overridden-method,
|
||||
isinstance-second-argument-not-valid-type,
|
||||
keyword-arg-before-vararg,
|
||||
line-too-long,
|
||||
logging-format-interpolation,
|
||||
|
|
@ -77,6 +80,7 @@ disable=abstract-method,
|
|||
too-many-ancestors,
|
||||
too-many-arguments,
|
||||
too-many-branches,
|
||||
too-many-format-args,
|
||||
too-many-function-args,
|
||||
too-many-instance-attributes,
|
||||
too-many-lines,
|
||||
|
|
@ -87,6 +91,7 @@ disable=abstract-method,
|
|||
trailing-whitespace,
|
||||
unbalanced-tuple-unpacking,
|
||||
undefined-variable,
|
||||
undefined-loop-variable,
|
||||
unexpected-special-method-signature,
|
||||
ungrouped-imports,
|
||||
unidiomatic-typecheck,
|
||||
|
|
|
|||
Loading…
Reference in New Issue