anki/pylib/.pylintrc
Damien Elmes dfe3c457e5 use top level defs for protobuf enum cases
While mypy can understand nested references like ConfigBool.Key.COLLAPSE_RECENT,
PyCharm doesn't understand the metaclass syntax, and shows the definitions
as invalid.
2021-02-05 19:26:13 +10:00

26 lines
448 B
INI

[MASTER]
ignore-patterns=.*_pb2.*
persistent = no
[TYPECHECK]
ignored-classes=
FormatTimespanIn,
UnburyCardsInCurrentDeckIn,
BuryOrSuspendCardsIn
[MESSAGES CONTROL]
disable=C,R,
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,