We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 944a43c commit 5c05cebCopy full SHA for 5c05ceb
tests/pylintrc
@@ -67,6 +67,9 @@ enable=all
67
# --enable=similarities". If you want to run only the classes checker, but have
68
# no Warning level messages displayed, use"--disable=all --enable=classes
69
# --disable=W"
70
+#
71
+# We disable no-member and too-many-ancestors as they doen't work well with
72
+# mixins.
73
disable=
74
suppressed-message,
75
locally-disabled,
@@ -82,6 +85,8 @@ disable=
82
85
relative-import,
83
86
redefined-variable-type,
84
87
too-many-public-methods,
88
+ no-member,
89
+ too-many-ancestors,
90
91
[REPORTS]
92
0 commit comments