-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
42 lines (38 loc) · 892 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[flake8]
format = wemake
doctests = True
ignore = WPS, W504
per-file-ignores =
stocks/settings.py: D10, E
[isort]
include_trailing_comma = true
lines_after_imports = 2
line_length = 80
[darglint]
strictness = long
[tool:pytest]
norecursedirs = tests/fixtures *.egg .eggs dist build docs .tox .git __pycache__
filterwarnings =
ignore::DeprecationWarning
addopts =
--strict
--doctest-modules
[mypy]
allow_redefinition = False
check_untyped_defs = True
disallow_untyped_decorators = True
disallow_any_explicit = True
disallow_any_generics = True
disallow_untyped_calls = True
ignore_errors = False
ignore_missing_imports = True
implicit_reexport = False
local_partial_types = True
strict_optional = True
strict_equality = True
no_implicit_optional = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
warn_unreachable = True
warn_no_return = True