Skip to content

Commit 5c05ceb

Browse files
committed
Disable some warnings which don't work well with mixins
1 parent 944a43c commit 5c05ceb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/pylintrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,9 @@ enable=all
6767
# --enable=similarities". If you want to run only the classes checker, but have
6868
# no Warning level messages displayed, use"--disable=all --enable=classes
6969
# --disable=W"
70+
#
71+
# We disable no-member and too-many-ancestors as they doen't work well with
72+
# mixins.
7073
disable=
7174
suppressed-message,
7275
locally-disabled,
@@ -82,6 +85,8 @@ disable=
8285
relative-import,
8386
redefined-variable-type,
8487
too-many-public-methods,
88+
no-member,
89+
too-many-ancestors,
8590

8691
[REPORTS]
8792

0 commit comments

Comments
 (0)