[MASTER]

# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
jobs=0


[MESSAGES CONTROL]

# Disable the message, report, category or checker with the given id(s).
disable=missing-module-docstring,
        too-few-public-methods,
        bad-continuation


[FORMAT]

# Maximum number of characters on a single line.
max-line-length=150


[BASIC]
good-names=i,
           j,
           k,
           ex,
           id,
           Run,
           io,
           logger

[LOGGING]
logging-format-style=new
logging-modules=logging

[DESIGN]

# Maximum number of arguments for function / method.
max-args=5

# Maximum number of return / yield for function / method body.
max-returns=3

# Maximum number of statements in function / method body.
max-statements=25

