[MASTER]

# As a temporary workaround for https://github.com/PyCQA/pylint/issues/4577
init-hook = "import astroid; astroid.context.InferenceContext.max_inferred = 500"

[MESSAGES CONTROL]

disable = bad-continuation, missing-docstring, duplicate-code, unspecified-encoding
enable = useless-suppression

[DESIGN]

max-args = 7
max-attributes = 12
min-public-methods = 1

[BASIC]

# Variable names which should always be accepted
good-names = i,
             df,
             _
