2018-02-20 10:23:04 +00:00
|
|
|
# https://docs.pylint.org/en/latest/technical_reference/features.html
|
|
|
|
|
2020-08-01 18:26:08 +00:00
|
|
|
[MASTER]
|
|
|
|
ignore=_version.py conf.py
|
|
|
|
jobs=0
|
|
|
|
|
2017-11-16 20:44:51 +00:00
|
|
|
[MESSAGES CONTROL]
|
2020-08-01 18:26:08 +00:00
|
|
|
disable=
|
|
|
|
abstract-method,
|
|
|
|
arguments-differ,
|
|
|
|
attribute-defined-outside-init,
|
|
|
|
bad-continuation,
|
|
|
|
broad-except,
|
2020-07-30 13:31:03 +00:00
|
|
|
invalid-name,
|
2020-08-01 18:26:08 +00:00
|
|
|
isinstance-second-argument-not-valid-type, # https://github.com/PyCQA/pylint/issues/3507
|
|
|
|
line-too-long,
|
|
|
|
missing-function-docstring, # prevents idiomatic type hints
|
|
|
|
multiple-statements, # prevents idiomatic type hints
|
|
|
|
no-init,
|
2020-07-30 13:31:03 +00:00
|
|
|
no-member,
|
2020-08-01 18:26:08 +00:00
|
|
|
no-self-use, # prevents idiomatic type hints
|
|
|
|
not-callable,
|
2020-08-01 13:44:09 +00:00
|
|
|
protected-access,
|
2020-08-01 18:26:08 +00:00
|
|
|
redefined-builtin,
|
|
|
|
signature-differs,
|
|
|
|
super-init-not-called,
|
|
|
|
too-few-public-methods,
|
|
|
|
too-many-ancestors,
|
|
|
|
too-many-branches,
|
|
|
|
too-many-locals,
|
|
|
|
wrong-import-order,
|
|
|
|
wrong-import-position,
|