azure-cli/pylintrc

21 строка
728 B
INI

[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
disable=C0111,C0103,I0011,W0511
[VARIABLES]
# Tells whether we should check for unused import in __init__ files.
init-import=yes
[DESIGN]
# Maximum number of locals for function / method body
max-locals=25
# Maximum number of branch for function / method body
max-branches=20
[SIMILARITIES]
# TODO: to workaround the dupe lines between 'command_test_script' and 'vcr_test_base'
# this should not be needed once we remove the 'command_test_script' in near future.
min-similarity-lines=50