# -*- conf-unix -*-

[MASTER]
jobs=4

[MESSAGES CONTROL]
disable=
  # This covers invalid constant names and certain others like e for exceptions,
  # because pylint whines like a baby.
  invalid-name,
  # pylint sucks at detecting these.
  abstract-method,
  abstract-class-instantiated,
  # pylint doesn't know about generics used for type hints.
  unsubscriptable-object,
  invalid-sequence-index,
  # isort handles this for us.
  ungrouped-imports,

[REPORTS]
reports=no
