setup.cfg 446 B

12345678910111213141516171819
  1. [mypy]
  2. python_version = 3.8
  3. ignore_missing_imports = true
  4. mypy_path = ./stubs
  5. junit_xml = lint_types/report.xml
  6. plugins =
  7. mypy_django_plugin.main
  8. [mypy-telecaster]
  9. ignore_errors = True
  10. [mypy.plugins.django-stubs]
  11. django_settings_module = telecaster.settings.test
  12. [flake8]
  13. ignore = E501,W503,E203,W605,E722,N813
  14. max_line_length = 120
  15. exclude = **migrations/*, **node_modules/*, **settings/*, **env/*, **.env/ **.pytest_cache/*, **static/*