mypy.ini 624 B

1234567891011121314151617181920212223242526
  1. [mypy]
  2. python_version = 3.6
  3. files = src/sentry/snuba/query_subscription_consumer.py
  4. ; Enable all options used with --strict
  5. warn_unused_configs=True
  6. disallow_any_generics=True
  7. disallow_subclassing_any=True
  8. disallow_untyped_calls=True
  9. disallow_untyped_defs=True
  10. disallow_incomplete_defs=True
  11. check_untyped_defs=True
  12. disallow_untyped_decorators=True
  13. no_implicit_optional=True
  14. warn_redundant_casts=True
  15. warn_unused_ignores=True
  16. warn_return_any=True
  17. no_implicit_reexport=True
  18. [mypy-confluent_kafka.*]
  19. ignore_missing_imports = True
  20. [mypy-jsonschema]
  21. ignore_missing_imports = True
  22. [mypy-django.*]
  23. ignore_missing_imports = True