mirror of https://github.com/scrapy/scrapy.git
74 lines
2.0 KiB
INI
74 lines
2.0 KiB
INI
[MASTER]
|
|
persistent=no
|
|
jobs=1 # >1 hides results
|
|
|
|
[MESSAGES CONTROL]
|
|
disable=abstract-method,
|
|
arguments-differ,
|
|
arguments-renamed,
|
|
attribute-defined-outside-init,
|
|
bad-classmethod-argument,
|
|
bare-except,
|
|
broad-except,
|
|
broad-exception-raised,
|
|
c-extension-no-member,
|
|
consider-using-with,
|
|
cyclic-import,
|
|
dangerous-default-value,
|
|
disallowed-name,
|
|
duplicate-code, # https://github.com/PyCQA/pylint/issues/214
|
|
eval-used,
|
|
fixme,
|
|
function-redefined,
|
|
global-statement,
|
|
implicit-str-concat,
|
|
import-error,
|
|
import-outside-toplevel,
|
|
inherit-non-class,
|
|
invalid-name,
|
|
invalid-overridden-method,
|
|
isinstance-second-argument-not-valid-type,
|
|
keyword-arg-before-vararg,
|
|
line-too-long,
|
|
logging-format-interpolation,
|
|
logging-fstring-interpolation,
|
|
logging-not-lazy,
|
|
lost-exception,
|
|
missing-docstring,
|
|
no-member,
|
|
no-method-argument,
|
|
no-name-in-module,
|
|
no-self-argument,
|
|
no-value-for-parameter, # https://github.com/pylint-dev/pylint/issues/3268
|
|
not-callable,
|
|
pointless-statement,
|
|
pointless-string-statement,
|
|
protected-access,
|
|
raise-missing-from,
|
|
redefined-builtin,
|
|
redefined-outer-name,
|
|
reimported,
|
|
signature-differs,
|
|
too-few-public-methods,
|
|
too-many-ancestors,
|
|
too-many-arguments,
|
|
too-many-branches,
|
|
too-many-format-args,
|
|
too-many-function-args,
|
|
too-many-instance-attributes,
|
|
too-many-lines,
|
|
too-many-locals,
|
|
too-many-public-methods,
|
|
too-many-return-statements,
|
|
unbalanced-tuple-unpacking,
|
|
unnecessary-dunder-call,
|
|
unnecessary-pass,
|
|
unreachable,
|
|
unused-argument,
|
|
unused-import,
|
|
unused-variable,
|
|
used-before-assignment,
|
|
useless-return,
|
|
wildcard-import,
|
|
wrong-import-position
|