[MESSAGES CONTROL]
# See:
#   http://docs.pylint.org/features.html
#
disable=
    duplicate-code,
    fixme,
    line-too-long,
    too-few-public-methods,
    too-many-instance-attributes,
    wrong-import-order,

[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

[BASIC]
# Good variable names which should always be accepted, separated by a comma.
good-names=
    _,
    i,
    id,
    j,
    k,
    tb,

# Regular expression which should only match function or class names that do
# not require a docstring.
no-docstring-rgx=__.*__|_.*|test_.*

[VARIABLES]
# A regular expression matching the name of dummy variables (i.e. expectedly
# not used).
dummy-variables-rgx=(_|_[a-z][a-z0-9_]{2,30})$
