[MASTER]
load-plugins=pylint_mccabe,pylint_django

[REPORTS]
output-format=colorized

[MESSAGES CONTROL]
disable=
    attribute-defined-outside-init,
    bad-builtin,
    duplicate-code,
    fixme,
    locally-disabled,
    locally-enabled,
    missing-super-argument,
    model-missing-unicode,
    no-self-use,
    too-few-public-methods,
    too-many-ancestors,
    too-many-lines,
    unused-argument,
    RP0101,
    RP0401,
    RP0402,
    RP0701,
    RP0801,

[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$|test_[a-zA-Z_][a-zA-Z0-9_]{2,100}$|setUp$|tearDown$
method-rgx=[a-z_][a-z0-9_]{2,30}$|test_[a-zA-Z_][a-zA-Z0-9_]{2,100}$
attr-rgx=[a-z_][a-z0-9_]{2,30}$|maxDiff$
exclude-protected=_asdict,_fields,_replace,_source,_make,_meta
no-docstring-rgx=^Meta$|^_
