[MASTER]

# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
extension-pkg-allow-list=
    pydantic,

[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,

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

[TYPECHECK]
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E0201 when accessed. Python regular
# expressions are accepted.
generated-members=
    __subclasses__,
    opts,

[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})$
