1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
[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
|