[MASTER]
load-plugins=pylint.extensions.docparams,pylint.extensions.docstyle
# ignore=tests

[TYPECHECK]

[MESSAGES CONTROL]
# no-member: python is a dynamic language, you can add members whenever you like
disable=R,no-member,maybe-no-member

[BASIC]
good-names=logger,bi,i,j,x,y,z

[PARAMETER_DOCUMENTATION]

# Whether to accept totally missing parameter documentation in the docstring of
# a function that has parameters.
accept-no-param-doc=no

# Whether to accept totally missing raises documentation in the docstring of a
# function that raises an exception.
accept-no-raise-doc=no

# Whether to accept totally missing return documentation in the docstring of a
# function that returns a statement.
accept-no-return-doc=no

# Whether to accept totally missing yields documentation in the docstring of a
# generator.
accept-no-yields-doc=no
