forked from NeoVintageous/NeoVintageous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmypy.ini
43 lines (36 loc) · 1.04 KB
/
mypy.ini
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
[mypy]
check_untyped_defs = True
follow_imports = normal
ignore_missing_imports = False
incremental = True
no_implicit_optional = False
no_implicit_reexport = True
no_strict_optional = True
show_column_numbers = True
strict_equality = True
strict_optional = True
verbosity = 0
disallow_any_decorated = False
disallow_any_explicit = False
disallow_any_expr = False
disallow_any_generics = False
disallow_any_unimported = True
disallow_incomplete_defs = False
disallow_subclassing_any = True
disallow_untyped_calls = False
disallow_untyped_decorators = False
disallow_untyped_defs = False
no_warn_no_return = True
warn_no_return = True
warn_redundant_casts = True
warn_return_any = False
warn_unreachable = True
warn_unused_configs = True
warn_unused_ignores = True
enable_error_code=ignore-without-code,redundant-expr
[mypy-NeoVintageous.tests.nv.*]
disable_error_code=attr-defined,name-defined,misc
[mypy-NeoVintageous.tests.functional.*]
disable_error_code=attr-defined
[mypy-NeoVintageous.tests.test_unittest]
disable_error_code=attr-defined,name-defined,misc