[MASTER]
# Pickle collected data for later comparisons.
persistent=no

# Use multiple processes to speed up Pylint.
jobs=0

# Ignore external repository for krb5 tests
ignore=krb5check


[MESSAGES CONTROL]

enable=
    all

disable=
    I,
    fixme,
    missing-docstring,
    invalid-name,
    no-else-return,
    duplicate-code,  # libssh-openssh trigger a lot of these


[REPORTS]

# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html. You can also give a reporter class, eg
# mypackage.mymodule.MyReporterClass.
output-format=colorized

# Tells whether to display a full report or only the messages
reports=no

# Template used to display messages. This is a python new-style format string
# used to format the message information. See doc for all details
msg-template='{path}:{line}: [{msg_id}({symbol}), {obj}] {msg})'

# Disable evaluation score
score=no


[FORMAT]
max-line-length=79


[DESIGN]
max-locals=30
max-branches=50
max-statements=100
max-parents=8  # needed for dual-role exceptions/warnings
