[MASTER]
# Use a conservative default here; 2 should speed up most setups and not hurt
# any too bad. Override on command line as appropriate.
jobs=2
persistent=no
extension-pkg-whitelist=ciso8601

[BASIC]
good-names=id,pk

[MESSAGES CONTROL]
# Reasons disabled:
# duplicate-code - unavoidable
# too-many-* - are not enforced for the sake of readability
# too-few-* - same as too-many-*
# inconsistent-return-statements - doesn't handle raise
disable=
  duplicate-code,
  inconsistent-return-statements,
  too-few-public-methods,
  too-many-ancestors,
  too-many-arguments,
  too-many-branches,
  too-many-instance-attributes,
  too-many-lines,
  too-many-locals,
  too-many-public-methods,
  too-many-return-statements,
  too-many-statements,
  too-many-boolean-expressions,
  too-many-positional-arguments,


[FORMAT]
expected-line-ending-format=LF

[EXCEPTIONS]
overgeneral-exceptions=pyicloud.exceptions.PyiCloudException
