
[MASTER]
ignore=tests

[MESSAGES CONTROL]
# missing-docstring can be removed after this issue is deployed https://github.com/PyCQA/pylint/issues/1164
disable=duplicate-code,missing-docstring

[REPORTS]
output-format=colorized

[VARIABLES]
init-import=no
dummy-variables-rgx=_|dummy

[TYPECHECK]
ignore-mixin-members=yes

[BASIC]
no-docstring-rgx=_.*
docstring-min-length=3
good-names=_
bad-names=foo,bar,baz,foobar

[DESIGN]
min-public-methods=1
max-public-methods=20

[FORMAT]
max-line-length=120

[MISCELLANEOUS]
notes=FIXME,XXX,TODO
