[MASTER]
disable=
    duplicate-code,
    missing-module-docstring,
    missing-class-docstring,
    missing-function-docstring,
    too-few-public-methods,
    no-self-use,  # grouping tests in classes violates this
    redefined-outer-name,  # fixtures violate this
    protected-access,  # sometimes protected stuff needs to be tested or mocked
    ungrouped-imports,
    no-member,
    invalid-name,
    wrong-import-order,
    fixme

[FORMAT]
max-line-length=120

[STRING]
check-quote-consistency=yes
