forked from ColCarroll/imcmc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
45 lines (44 loc) · 806 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
43
44
45
[flake8]
max-line-length = 100
ignore =
F401,
F841,
E116,
E251,
E261,
E265,
E266,
E302,
E305,
E402,
E722,
E741,
W503,
W605
exclude =
.git,
__pycache__,
docs/conf.py,
docs/source/conf.py,
old,
build,
dist
max-complexity = 20
# output-file = src\test\flake8_run.txt
[mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
# ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
# warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true