We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a20a734 commit 8654769Copy full SHA for 8654769
.pylintrc
@@ -0,0 +1,18 @@
1
+[FORMAT]
2
+# Essential to be able to compare code side-by-side (`black` default setting)
3
+# and best compromise to minimize file size
4
+max-line-length=88
5
+
6
+[TYPECHECK]
7
+ignored-modules=qtpy.QtWidgets,qtpy.QtCore,qtpy.QtGui
8
9
+[MESSAGES CONTROL]
10
+disable=wrong-import-order
11
12
+[DESIGN]
13
+max-args=8 # default: 5
14
+max-attributes=12 # default: 7
15
+max-branches=17 # default: 12
16
+max-locals=20 # default: 15
17
+min-public-methods=0 # default: 2
18
+max-public-methods=25 # default: 20
0 commit comments