# pylint configuration

[MASTER]

# ignore auto-generated protobuf files
ignore=
    hangouts_pb2.py,
    test_pblite_pb2.py,

[MESSAGES CONTROL]

disable=
    logging-format-interpolation,
    invalid-name,
    missing-docstring,
    locally-disabled,
    locally-enabled,
    fixme,
    too-few-public-methods,
    too-many-arguments,
    too-many-instance-attributes,
    too-many-public-methods,
    too-many-locals,
    no-member,
    wrong-import-order,
    deprecated-method,
    redefined-variable-type,
    too-many-statements,
    too-many-lines,
    no-else-return,
    inconsistent-return-statements,
    no-else-raise,
    no-else-break,
    raise-missing-from,
    consider-using-with,

[FORMAT]

max-line-length=79
