takahe/setup.cfg

33 wiersze
591 B
INI
Czysty Zwykły widok Historia

2022-11-05 20:22:36 +00:00
[flake8]
exclude = venv/*,tox/*,specs/*
ignore = E123,E128,E203,E266,E402,F405,E501,W503,E731,W601
max-line-length = 119
[isort]
profile = black
multi_line_output = 3
[tool:pytest]
addopts = --tb=short
2022-11-13 05:10:06 +00:00
DJANGO_SETTINGS_MODULE = takahe.settings.testing
filterwarnings =
ignore:There is no current event loop
2022-11-05 20:22:36 +00:00
[mypy]
warn_unused_ignores = True
[mypy-django.*]
ignore_missing_imports = True
[mypy-urlman.*]
ignore_missing_imports = True
[mypy-crispy_forms.*]
ignore_missing_imports = True
[mypy-cryptography.*]
ignore_missing_imports = True
[mypy-*.migrations.*]
ignore_errors = True