2016-02-26 08:56:26 +03:00
|
|
|
[MESSAGES CONTROL]
|
|
|
|
# For all codes, run 'pylint --list-msgs' or go to 'http://pylint-messages.wikidot.com/all-codes'
|
|
|
|
# C0111 Missing docstring
|
|
|
|
# C0103 Invalid %s name "%s"
|
|
|
|
# I0011 Warning locally suppressed using disable-msg
|
|
|
|
# W0511 fixme
|
2016-03-01 19:09:11 +03:00
|
|
|
disable=C0111,C0103,I0011,W0511
|
2016-04-29 20:18:37 +03:00
|
|
|
[VARIABLES]
|
|
|
|
# Tells whether we should check for unused import in __init__ files.
|
|
|
|
init-import=yes
|
2016-02-26 08:56:26 +03:00
|
|
|
[DESIGN]
|
|
|
|
# Maximum number of locals for function / method body
|
|
|
|
max-locals=25
|
|
|
|
# Maximum number of branch for function / method body
|
2016-04-29 20:18:37 +03:00
|
|
|
max-branches=20
|
2016-06-08 03:34:44 +03:00
|
|
|
[SIMILARITIES]
|
2016-06-28 03:18:04 +03:00
|
|
|
min-similarity-lines=10
|
2016-06-08 03:34:44 +03:00
|
|
|
|