OpenSlides/setup.cfg

30 lines
521 B
INI
Raw Normal View History

[coverage:run]
source = openslides
omit =
openslides/core/management/commands/*.py
openslides/users/management/commands/*.py
[coverage:html]
directory = personal_data/tmp/htmlcov
[flake8]
max_line_length = 150
[isort]
include_trailing_comma = true
multi_line_output = 3
2017-08-23 20:51:06 +02:00
[mypy]
ignore_missing_imports = true
strict_optional = true
2017-08-24 12:26:55 +02:00
check_untyped_defs = true
2017-08-23 20:51:06 +02:00
2017-08-24 12:26:55 +02:00
[mypy-openslides.utils.*]
2018-02-24 16:38:17 +01:00
disallow_untyped_defs = true
2017-08-22 14:17:20 +02:00
[mypy-openslides.core.config]
2018-02-24 16:38:17 +01:00
disallow_untyped_defs = true
[mypy-tests.*]
ignore_errors = true