47 lines
967 B
INI
47 lines
967 B
INI
[flake8]
|
|
max-line-length = 100
|
|
exclude =
|
|
ignore = E501,W503,DAR101,DAR201,DAR402
|
|
|
|
[darglint]
|
|
docstring_style=sphinx
|
|
|
|
[isort]
|
|
not_skip=__init__.py
|
|
multi_line_output=3
|
|
include_trailing_comma=True
|
|
force_grid_wrap=0
|
|
use_parentheses=True
|
|
line_length=100
|
|
|
|
[tool:pytest]
|
|
addopts = -n auto --tb=native -q
|
|
|
|
[mypy]
|
|
pretty = True
|
|
ignore_missing_imports = True
|
|
check_untyped_defs = True
|
|
disallow_subclassing_any = True
|
|
disallow_untyped_calls = True
|
|
disallow_untyped_defs = False
|
|
disallow_incomplete_defs = False
|
|
disallow_untyped_decorators = True
|
|
no_implicit_optional = True
|
|
warn_redundant_casts = True
|
|
warn_unused_ignores = True
|
|
warn_no_return = True
|
|
warn_return_any = False
|
|
warn_unused_configs = True
|
|
warn_unreachable = True
|
|
allow_redefinition = True
|
|
strict_equality = True
|
|
show_error_context = True
|
|
|
|
[mypy-tests.*]
|
|
check_untyped_defs = False
|
|
disallow_untyped_defs = False
|
|
disallow_incomplete_defs = False
|
|
warn_unreachable = False
|
|
|
|
[mypy-conftest]
|
|
disallow_untyped_defs = False |