forked from koehlma/momba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
35 lines (30 loc) · 763 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
[flake8]
max-line-length = 99
# FIXME: B030,B028
extend-ignore = E203,F811,E231,B020,B024,B030,B028,W604,E702,E713
[mypy]
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_subclassing_any = True
warn_no_return = True
strict_optional = True
strict_equality = True
no_implicit_optional = True
disallow_any_generics = True
disallow_any_unimported = False
warn_redundant_casts = True
warn_unused_ignores = False
warn_unused_configs = True
show_traceback = True
show_error_codes = True
pretty = False
[mypy-momba_engine.*]
ignore_missing_imports = True
[mypy-docker.*]
ignore_missing_imports = True
[mypy-click.*]
ignore_missing_imports = True
[mypy-gym.*]
ignore_missing_imports = True