[MAIN]

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

# Add files or directories matching the regex patterns to the ignore-list. The
# regex matches against paths and can be in Posix or Windows format.
ignore-paths=
    tests/samples,

# Specify a score threshold under which the program will exit with error.
fail-under=10.0

# Return non-zero exit code if any of these messages/categories are detected,
# even if score is above --fail-under value. Syntax same as enable. Messages
# specified are enabled, while categories only check already-enabled messages.
fail-on=

[MESSAGES CONTROL]

enable=


disable=
    C,
    broad-exception-caught,
    too-many-ancestors,
    too-few-public-methods,
    duplicate-code,
    fixme,


[FORMAT]

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

[DESIGN]
max-locals = 20
