forked from raiden-network/raiden-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
38 lines (32 loc) · 790 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
[bumpversion]
current_version = major
[flake8]
ignore = E731, E203, W503, B008, E402
max-line-length = 99
exclude = build,dist,.git,.venv
[pep8]
ignore = E731, E203, W503
max-line-length = 99
[isort]
line_length=99
known_future_library=future
known_first_party=raiden,raiden_contracts,raiden_libs,monitoring_service,pathfinding_service
default_section=THIRDPARTY
combine_as_imports=1
# make black happy
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
[mypy]
ignore_missing_imports = True
check_untyped_defs = True
disallow_untyped_defs = True
warn_unused_configs = True
warn_unused_ignores = True
warn_unreachable = True
warn_redundant_casts = True
strict_equality = True
no_implicit_optional = True
[mypy-tests.*]
disallow_untyped_defs = False