f9aff548b7
Pylint is no longer able to detect available members in the generated protobuf files, so we need to exclude them from processing. This should not be a problem as we get these checks from mypy already, and as a bonus we no longer need to exclude protobuf classes manually. The fact that anki.sync_pb2 needs to be added after the wildcard appears to be a bug.
46 lines
761 B
INI
46 lines
761 B
INI
[MASTER]
|
|
ignore-patterns=.*_pb2.*
|
|
persistent = no
|
|
extension-pkg-whitelist=orjson
|
|
|
|
[REPORTS]
|
|
output-format=colorized
|
|
|
|
[MESSAGES CONTROL]
|
|
disable=
|
|
R,
|
|
line-too-long,
|
|
too-many-lines,
|
|
missing-function-docstring,
|
|
missing-module-docstring,
|
|
missing-class-docstring,
|
|
import-outside-toplevel,
|
|
wrong-import-position,
|
|
wrong-import-order,
|
|
fixme,
|
|
unused-wildcard-import,
|
|
attribute-defined-outside-init,
|
|
redefined-builtin,
|
|
wildcard-import,
|
|
broad-except,
|
|
bare-except,
|
|
unused-argument,
|
|
unused-variable,
|
|
redefined-outer-name,
|
|
global-statement,
|
|
protected-access,
|
|
arguments-differ,
|
|
arguments-renamed,
|
|
consider-using-f-string,
|
|
|
|
[BASIC]
|
|
good-names =
|
|
id,
|
|
tr,
|
|
db,
|
|
ok,
|
|
ip,
|
|
|
|
[IMPORTS]
|
|
ignored-modules = anki.*_pb2, anki.sync_pb2
|