[DISABLE CONTROL]
disable=
    missing-docstring,
    unused-argument,
    too-few-public-methods,
    invalid-name,
    bad-continuation,
    fixme,
    locally-disabled,
    inconsistent-return-statements,
    keyword-arg-before-vararg,
    useless-object-inheritance,  # to be removed for py3
    duplicate-code,  # too many false positives between file and user modules :/
    no-self-use,  # too many false positives
    wrong-import-order
max-branches=20
max-bool-expr=6
max-args=8
# we have flake8 for that
max-line-length=1000
generated-members=check_output,run_test,run_expect,run,find_command

[REPORTS]
reports=no
msg-template={path}:{line}: {msg_id} {symbol} {msg}
