forked from microsoft/knack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
26 lines (23 loc) · 789 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[MESSAGES CONTROL]
# For all codes, run 'pylint --list-msgs' or go to 'http://pylint-messages.wikidot.com/all-codes'
# W0511 fixme
# C0111 Missing docstring
# C0103 Invalid %s name "%s"
# C0415 Import outside toplevel (import-outside-toplevel)
# I0011 Warning locally suppressed using disable-msg
# R0913 Too many arguments
# R0903 too-few-public-methods
# R0401 cyclic-import
# R0205 useless-object-inheritance
# R1717 consider-using-dict-comprehension
disable=W0511,C0111,C0103,C0415,I0011,R0913,R0903,R0401,R0205,R1717,useless-suppression,
consider-using-f-string
[FORMAT]
max-line-length=120
[DESIGN]
# Maximum number of locals for function / method body
max-locals=25
# Maximum number of branch for function / method body
max-branches=20
[SIMILARITIES]
min-similarity-lines=10