-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.cfg
57 lines (44 loc) · 1.06 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
[flake8]
exclude =
.eggs
.git
.pybuild
.tox
__pycache__
build
dist
ignore =
# W503 and W504 conflict; ignore the one that disagrees with recent PEP8.
W503
# try to keep it reasonable, but this allows us to push it a bit when needed.
max_line_length = 150
noqa-require-code = true
[isort]
atomic = True
balanced_wrapping = True
combine_as_imports = True
include_trailing_comma = True
length_sort = True
multi_line_output = 3
order_by_type = False
default_section = THIRDPARTY
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[mypy]
disallow_any_explicit = True
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
show_error_codes = True
enable_error_code = ignore-without-code