Skip to content

Commit 8654769

Browse files
committed
Added .pylintrc
1 parent a20a734 commit 8654769

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.pylintrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)