-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (49 loc) · 1.18 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[bdist_wheel]
universal = true
[flake8]
exclude =
.eggs,
.git,
.pybuild,
__pycache__,
build,
debian,
script
ignore =
# don't require commas in places that only Python 3.6 requires them (we
# support Python 3.5)
C816
# W503 and W504 conflict; ignore the one that disagrees with recent PEP8.
W503
# try to keep it below 80, but this allows us to push it a bit when needed.
max_line_length = 90
[isort]
atomic = True
indent = 4
multi_line_output = 3
use_parentheses = True
include_trailing_comma = True
combine_as_imports = True
order_by_type = False
default_section = THIRDPARTY
known_standard_library = typing_extensions
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
not_skip =
__init__.py,
[mypy]
disallow_any_explicit = False
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
strict_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
warn_unreachable = True
implicit_reexport = False
strict_equality = True
scripts_are_modules = True
warn_unused_configs = True